Learn R Programming

Zseq (version 0.2.1)

Happy: Happy numbers

Description

Under OEIS A007770, a Happy number is defined by the process that starts from arbitrary positive integer and replaces the number by the sum of the squares of each digit until the number is 1. First 6 Happy numbers are 1, 7, 10, 13, 19, 23.

Usage

Happy(n, gmp = TRUE)

Value

a vector of length n containing first entries from the sequence.

Arguments

n

the number of first n entries from the sequence.

gmp

a logical; TRUE to use large number representation, FALSE otherwise.

Examples

Run this code
## generate first 30 happy numbers
print(Happy(30))

Run the code above in your browser using DataLab