login
A335594
a(n) is the first prime to start a sequence of exactly n primes under the iteration p -> p + (p^2-1)/12.
0
2, 7, 5, 59, 1657459
OFFSET
1,1
COMMENTS
No further terms up to 10^8.
EXAMPLE
a(3) = 5 because 5 starts a sequence of exactly 3 primes: 5 -> 5+(5^2-1)/12 = 7 -> 7+(7^2-1)/12 = 11, while 11 + (11^2-1)/12 = 21 is not prime, and 5 is the first prime to do so.
MAPLE
g:= p -> p + (p^2-1)/12:
f:= proc(p)
if not isprime(p) then 0
else 1 + procname(g(p))
fi
end proc:
A:= Vector(5): A[1]:= 2: count:= 1:
p:= 3:
while count < 5 do
p:= nextprime(p);
v:= f(p);
if A[v] = 0 then count:= count+1; A[v]:= p; fi
od:
convert(A, list);
CROSSREFS
Sequence in context: A152555 A343780 A094360 * A051757 A193746 A070524
KEYWORD
nonn,more
AUTHOR
J. M. Bergot and Robert Israel, Dec 24 2020
STATUS
approved