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

A269758
Prime powers with squarefree neighbors.
2
2, 4, 16, 32, 128, 256, 2048, 8192, 16384, 65536, 131072, 524288, 4194304, 8388608, 33554432, 67108864, 268435456, 536870912, 2147483648, 4294967296, 17179869184, 34359738368, 137438953472, 274877906944, 2199023255552, 8796093022208, 17592186044416, 70368744177664
OFFSET
1,1
COMMENTS
All a(n) are powers of 2.
No terms are powers of 8. - Robert Israel, Jan 07 2019
LINKS
EXAMPLE
2 is in this sequence because both 2 - 1 = 1 and 2 + 1 = 3 are squarefree.
MAPLE
map(t -> 2^t, select(t -> numtheory:-issqrfree(2^t-1) and numtheory:-issqrfree(2^t+1), [seq(seq(3*k+i, i=1..2), k=0..20)])); # Robert Israel, Jan 07 2019
PROG
(Magma) [2^n: n in [1..50] | IsSquarefree(2^n-1) and IsSquarefree(2^n+1)];
CROSSREFS
Cf. A000961.
Sequence in context: A274497 A145119 A081411 * A094384 A053038 A001088
KEYWORD
nonn
AUTHOR
STATUS
approved