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

A280555
Primes p such that sigma(sigma(p)) is a Fibonacci number.
1
19289, 7391381, 9041581, 9124081, 9589141, 645617593711, 786881099503, 793374393583, 188950298985689, 215446003400539, 228846950929339, 257138974382029, 265666386165589, 276918720321829, 280481623844131, 323331286115017, 326905876894417
OFFSET
1,1
COMMENTS
Is this sequence infinite?
EXAMPLE
Prime number 7391381 is a term because sigma(sigma(7391381)) = 14930352 is a Fibonacci number.
PROG
(PARI) isFibonacci(n)=my(k=n^2); issquare(k+=(k+1)<<2) || (n>0 && issquare(k-8));
is(n)=isFibonacci(sigma(n+1))&&isprime(n);
CROSSREFS
KEYWORD
nonn
AUTHOR
Altug Alkan, Jan 05 2017
EXTENSIONS
Terms confirmed by Giovanni Resta, Jan 07 2017
STATUS
approved