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”).

A037920
Trajectory of 8 under prime factor concatenation procedure.
0
8, 2, 2, 2, 2, 3, 37, 3, 19, 41, 3, 3, 3, 7, 13, 13, 3, 11123771, 7, 149, 317, 941, 229, 31219729, 11, 2084656339, 3, 347, 911, 118189, 11, 613, 496501723, 97, 130517, 917327, 53, 1832651281459, 3, 3, 3, 11, 139, 653, 3863, 5107
OFFSET
0,1
LINKS
PROG
(Python)
from sympy import factorint
def iterate(n):
flst, f = [n], sorted(factorint(n, multiple=True))
while len(f) > 1:
flst += f
f = sorted(factorint(int("".join(map(str, f))), multiple=True))
return flst
print(iterate(8)) # Michael S. Branicky, Aug 02 2021
CROSSREFS
Sequence in context: A010150 A176153 A136711 * A138997 A248498 A133918
KEYWORD
fini,full,nonn,tabf,base
AUTHOR
EXTENSIONS
Edited by Charles R Greathouse IV, Apr 30 2010
STATUS
approved