login
A308259
a(n) is equal to the sum of the factorials of the digits of a(n-1), initial term is 3.
1
3, 6, 720, 5043, 151, 122, 5, 120, 4, 24, 26, 722, 5044, 169, 363601, 1454, 169, 363601, 1454, 169, 363601, 1454, 169, 363601, 1454, 169, 363601, 1454, 169, 363601, 1454, 169, 363601, 1454, 169, 363601, 1454, 169, 363601, 1454, 169, 363601, 1454, 169, 363601
OFFSET
1,1
COMMENTS
From a(14) = 169, the sequence is stuck in the loop 363601, 1454, 169, 363601, 1454, ...
LINKS
Shoei Takahashi, Unchone Lee, Hikaru Manabe, Aoi Murakami, Daisuke Minematsu, Kou Omori, and Ryohei Miyadera, Curious Properties of Iterative Sequences, arXiv:2308.06691 [math.GM], 2023.
EXAMPLE
a(5) = 151, so a(6) = 1! + 5! + 1! = 1 + 120 + 1 = 122.
MATHEMATICA
NestList[Total@ Map[Factorial, IntegerDigits[#]] &, 3, 36] (* Michael De Vlieger, Aug 21 2023 *)
CROSSREFS
Sequence in context: A157540 A179267 A171928 * A034879 A113588 A071106
KEYWORD
base,easy,nonn
AUTHOR
Romain Pinot, May 17 2019
STATUS
approved