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

A115986
Primes p such that the average of p and nextprime(p) is a power of 3.
4
7, 79, 387420479, 3486784393, 7509466514979724803946715958257527, 147808829414345923316083210206383297581
OFFSET
1,1
LINKS
EXAMPLE
Nextprime(387420479) = 387420499 and (387420479 + 387420499)/2 = 387420489 = 3^18.
PROG
(PARI) lista(nn) = for(k=1, nn, if(precprime(3^k-1)+nextprime(3^k+1)==2*3^k, print1(precprime(3^k-1), ", "))); \\ Jinyuan Wang, Feb 26 2020
CROSSREFS
KEYWORD
nonn
AUTHOR
Giovanni Resta, Feb 10 2006
STATUS
approved