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

A095911
Number of steps where the modified Juggler sequence reaches a new record (A095910).
4
1, 6, 13, 19, 21, 62, 64, 83, 94, 112, 120, 142, 144, 301, 306, 311, 322, 338, 357
OFFSET
1,2
COMMENTS
The modified Juggler sequence: begin with x and if x is even, round(sqrt(x)) -> x and if x is odd, round(sqrt(x3)) -> x and repeat until x = 1, count the iterations.
The records A094696 and A095911 are probably the same sequence. - R. J. Mathar, Jul 28 2007
MATHEMATICA
mjs[n_] := If[ EvenQ[n], Round[ Sqrt[n]], Round[ Sqrt[n^3]]];; f[n_] := Length[ NestWhileList[mjs, n, # != 1 &]] - 1; a = {0}; Do[ b = f[n]; If[b >a[[ -1]] AppendTo[a, b]; Print[n]], {n, 250000}]
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Robert G. Wilson v, Jun 14 2004
EXTENSIONS
a(16)-a(19) from Chai Wah Wu, Aug 18 2016
STATUS
approved