login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,3
COMMENTS
If n is a prime, a(n) = 0.
a(20) is presently unknown - see A195265 for the trajectory.
LINKS
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

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 11:26 EDT 2024. Contains 371913 sequences. (Running on oeis4.)