OFFSET
1,2
COMMENTS
Comparing these numbers with A036378, the number of primes between 2^n and 2^(n+1), leads one to conjecture that the density of Section I primes is 0.
LINKS
EXAMPLE
3; 5, 7; 11, 13; 17, 23, 29, 31; 41, 47, 53, 59, 61; 83,...
MATHEMATICA
class[ n_ ] := Length[ NestWhileList[ EulerPhi, n, #>2& ] ]-1; k=2; Table[ cnt=0; While[ p=Prime[ k ]; p<2^(n+1), If[ class[ p ]==n, cnt++ ]; k++ ]; cnt, {n, 20} ] (* T. D. Noe, Aug 04 2008 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
T. D. Noe, Nov 30 2007
STATUS
approved