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

A252596
Let a(n-1)=p and k=pi(p); then a(n)=prime(k+mod(p,3)).
1
5, 11, 17, 23, 31, 37, 41, 47, 59, 67, 71, 79, 83, 97, 101, 107, 113, 131, 139, 149, 157, 163, 167, 179, 191, 197, 211, 223, 227, 233, 241, 251, 263, 271, 277, 281, 293, 311, 317, 337, 347, 353, 367, 373, 379, 383, 397, 401, 419, 431, 439, 443, 457, 461, 467, 487, 491, 503, 521, 541, 547
OFFSET
1,1
LINKS
FORMULA
a(n+1) = prime(A049084(a(n)) + a(n) mod 3). - Reinhard Zumkeller, Dec 19 2014
MATHEMATICA
a = 5; s = {5}; n = 3; Do[b = Prime[n = n + Mod[a, 3]]; AppendTo[s, b]; a = b, {100}]; s
PROG
(Haskell)
a252596 n = a252596_list !! (n-1)
a252596_list = iterate (\x -> a000040 (a049084 x + mod x 3)) 5
-- Reinhard Zumkeller, Dec 19 2014
CROSSREFS
Sequence in context: A287305 A189938 A184525 * A096448 A351140 A365809
KEYWORD
nonn
AUTHOR
Zak Seidov, Dec 19 2014
STATUS
approved