OFFSET
1,3
COMMENTS
All positive integers seem to occur somewhere in this sequence (a proof would be nice!).
The first occurrence of 6 is at a(59474).
The first occurrence of 33 is at a(2514233).
The first occurrence of 75 is at a(8654593). - Reinhard Zumkeller, Jan 30 2015
LINKS
N. J. A. Sloane and T. D. Noe, Table of n, a(n) for n = 1..60000 (the first 1000 terms from T. D. Noe)
FORMULA
a(n) = 2^(a(n-1)) mod n, a(1) = 0
EXAMPLE
a(11) = 4, so a(12) = 2^a(11) mod 12 = 16 mod 12 = 4.
MATHEMATICA
Transpose[NestList[{Mod[2^First[#], Last[#]+1], Last[#]+1}&, {0, 1}, 95]][[1]] (* Harvey P. Dale, Apr 17 2011 *)
Join[{s=0}, Table[s = PowerMod[2, s, n], {n, 2, 100}]] (* T. D. Noe, Apr 17 2011 *)
PROG
(Haskell)
import Math.NumberTheory.Moduli (powerMod)
a131644 n = a131644_list !! (n-1)
a131644_list = map fst $ iterate f (0, 2) where
f (v, w) = (powerMod 2 v w, w + 1)
-- Reinhard Zumkeller, Jan 30 2015
CROSSREFS
KEYWORD
easy,nonn,nice
AUTHOR
Jon Ayres (jonathan.ayres(AT)ntlworld.com), Sep 08 2007
STATUS
approved