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

A075079
Numbers k in A001597 such that 2*k + 1 is prime.
1
1, 8, 9, 36, 81, 125, 128, 216, 243, 441, 576, 729, 900, 1089, 1296, 1331, 1728, 1764, 2025, 4356, 5184, 5625, 7569, 8000, 8649, 9216, 9261, 9801, 10404, 11025, 15129, 17424, 17576, 18225, 19683, 23409, 24336, 24389, 26244, 27000, 31329, 32768, 34596, 35721
OFFSET
1,2
EXAMPLE
2*8 + 1 = 17 is prime, so 8 is a term.
PROG
(PARI) lista(nn) = {vec = vector(nn, i, i); pp = select(i->((ispower(i) || (i==1)) && isprime(2*i+1)), vec); for (i = 1, #pp, print1(pp[i], ", ")); } \\ Michel Marcus, Oct 02 2013
CROSSREFS
Sequence in context: A036764 A129548 A322797 * A317379 A376120 A298665
KEYWORD
easy,nonn
AUTHOR
Zak Seidov, Oct 11 2002
EXTENSIONS
More terms from Michel Marcus, Oct 02 2013
STATUS
approved