A066208 All primes that divide n are of the form prime(2k-1), where prime(k) is k-th prime.
1, 2, 4, 5, 8, 10, 11, 16, 17, 20, 22, 23, 25, 31, 32, 34, 40, 41, 44, 46, 47, 50, 55, 59, 62, 64, 67, 68, 73, 80, 82, 83, 85, 88, 92, 94, 97, 100, 103, 109, 110, 115, 118, 121, 124, 125, 127, 128, 134, 136, 137, 146, 149, 155, 157, 160, 164, 166, 167, 170, 176, 179, 184
Offset: 1
Keywords
Examples
20 is included because 20 = 2^2 * 5 = p(1)^2 * p(3) and 1 and 3 are both odd.
Links
- Harry J. Smith, Table of n, a(n) for n = 1..1001
Programs
-
PARI
{ n=0; for (m=2, 10^9, f=factor(m); b=1; for(i=1, matsize(f)[1], if (primepi(f[i, 1])%2 == 0, b=0; break)); if (b, write("b066208.txt", n++, " ", m); if (n==1000, return)) ) } \\ Harry J. Smith, Feb 06 2010
Extensions
Offset changed from 0 to 1 by Harry J. Smith, Feb 06 2010
a(61) and a(62) from Harry J. Smith, Feb 06 2010
1 prepended by Peter Munn, Aug 11 2022
Comments