login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A360941
a(n) is the least multiple of m that is a happy number (A007770).
2
1, 10, 129, 28, 10, 192, 7, 32, 1125, 10, 44, 192, 13, 28, 1125, 32, 68, 1152, 19, 100, 1029, 44, 23, 192, 100, 130, 1188, 28, 203, 1290, 31, 32, 1122, 68, 70, 1152, 888, 190, 1092, 280, 82, 1092, 86, 44, 1125, 230, 94, 192, 49, 100, 1122, 208, 901, 1188, 440
OFFSET
1,2
COMMENTS
This sequence is well defined as A007770 contains arbitrarily long subsequences of consecutive terms.
LINKS
FORMULA
a(n) = A360942(n) * n.
a(n) = n iff n belongs to A007770.
PROG
(PARI) a(n) = { forstep (m = n, oo, n, my (h = m, d); while (h > 6, d = digits(h); h = sum(k = 1, #d, d[k]^2)); if (h == 1, return (m))) }
CROSSREFS
Sequence in context: A296379 A183538 A184678 * A007819 A054050 A067313
KEYWORD
nonn,base
AUTHOR
Rémy Sigrist, Feb 26 2023
STATUS
approved