login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

A230305
Iterate A080670 starting at n; a(n) = number of steps to reach a prime, or -1 if no prime is ever reached.
6
0, 0, 2, 0, 1, 0, 1, 4, 3, 0, 1, 0, 3, 4, 2, 0, 3, 0
OFFSET
2,3
COMMENTS
If n is a prime, a(n) = 0.
a(20) is presently unknown - see A195265 for the trajectory.
EXAMPLE
9 -> 32 -> 25 -> 52 -> 2213, which is prime, taking 4 steps, so a(9) = 4.
MATHEMATICA
fn[n_] := FromDigits[Flatten[IntegerDigits[DeleteCases[Flatten[FactorInteger[n]], 1]]]];
Map[Length, Table[NestWhileList[fn, n, # != 1 && ! PrimeQ[#] &], {n, 2,
19}], {1}] - 1 (* Robert Price, Mar 16 2020 *)
CROSSREFS
Cf. A080670, A195264 (the prime that is reached), A195265, A067599, A037271 (home primes).
Sequence in context: A112517 A112519 A276981 * A357293 A357119 A357883
KEYWORD
nonn,base,more,hard
AUTHOR
N. J. A. Sloane, Oct 27 2013
STATUS
approved