A284987 Juggler sequence starting at 37.
37, 225, 3375, 196069, 86818724, 9317, 899319, 852846071, 24906114455136, 4990602, 2233, 105519, 34276462, 5854, 76, 8, 2, 1
Offset: 0
References
- David Wells, The Penguin Dictionary of Curious and Interesting Numbers, Revised Edition, Penguin Books, 1997, page 99.
Links
- Eric Weisstein's World of Mathematics, Juggler Sequence
- Calculated using the Juggler Sequence calculator found at Calculation for it
Programs
-
PARI
Juggler(n)={my(L=List([n])); while(n<>1, n=sqrtint(n^(2-(-1)^n)); listput(L,n)); Vec(L)} { Juggler(37) } \\ Andrew Howroyd, Apr 27 2020
Formula
a(0) = 37, a(n) = floor(sqrt(a(n-1))): n even, a(n) = floor((sqrt(a(n-1)))^3): n odd.
Comments