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!)
A333264 Least number k that reaches 1 after n iterations of A206369. 0
1, 2, 3, 4, 5, 8, 15, 17, 69, 121, 137, 467, 985, 1949, 4049, 8117, 14641, 36383, 62501, 125003, 250007, 958081, 1817513, 3325981, 8062091, 21233813, 42467627, 125828819, 343955189 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Least number k such that A330786(k) = n.
LINKS
EXAMPLE
a(5) = 8 since 8 is the least number that reaches 1 after 5 iterations of A206369: 8 -> 5 -> 4 -> 3 -> 2 -> 1.
MATHEMATICA
f[p_, e_] := Sum[(-1)^(e-k)*p^k, {k, 0, e}]; s[1] = 1; s[n_] := Times @@ (f @@@ FactorInteger[n]); numiter[n_] := Length @ FixedPointList[s, n] - 2; n = 0; seq={}; Do[If[numiter[k] == n, AppendTo[seq, k]; n++], {k, 1, 1000}]; seq
CROSSREFS
Sequence in context: A108014 A075721 A112479 * A247461 A281303 A264011
KEYWORD
nonn,more
AUTHOR
Amiram Eldar, Mar 13 2020
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 16 19:48 EDT 2024. Contains 371754 sequences. (Running on oeis4.)