A370596 Numbers k such that A007814(k) is a prime number.
4, 8, 12, 20, 24, 28, 32, 36, 40, 44, 52, 56, 60, 68, 72, 76, 84, 88, 92, 96, 100, 104, 108, 116, 120, 124, 128, 132, 136, 140, 148, 152, 156, 160, 164, 168, 172, 180, 184, 188, 196, 200, 204, 212, 216, 220, 224, 228, 232, 236, 244, 248, 252, 260, 264, 268, 276
Offset: 1
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
Select[Range[300], PrimeQ[IntegerExponent[#, 2]] &]
-
PARI
is(n) = isprime(valuation(n, 2));
Comments