Happy {Zseq} | R Documentation |
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)
Arguments
n |
the number of first |
gmp |
a logical; |
Value
a vector of length n
containing first entries from the sequence.
Examples
## generate first 30 happy numbers
print(Happy(30))
[Package Zseq version 0.2.1 Index]