|
| |
|
|
A080165
|
|
Primes having initial digits "10" in binary representation.
|
|
4
| |
|
|
2, 5, 11, 17, 19, 23, 37, 41, 43, 47, 67, 71, 73, 79, 83, 89, 131, 137, 139, 149, 151, 157, 163, 167, 173, 179, 181, 191, 257, 263, 269, 271, 277, 281, 283, 293, 307, 311, 313, 317, 331, 337, 347, 349, 353, 359, 367, 373, 379, 383, 521, 523, 541, 547, 557, 563
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,1
|
|
|
COMMENTS
| Also primes that terminate at 4,2,1 in the x-1 problem: Repeat, if x is even divide by 2 else subtract 1, until 4 is reached. - Cino Hilliard, Mar 27 2003
|
|
|
EXAMPLE
| A000040(15)=47 -> '101111' therefore 47 is a term.
|
|
|
PROG
| (PARI) pxnm1(n, p) = { forprime(x=2, n, p1 = x; while(p1>1, if(p1%2==0, p1/=2, p1 = p1*p-1; ); if(p1 == 4, break); ); if(p1 == 4, print1(x" ")) ) }
|
|
|
CROSSREFS
| Cf. A004676, A080166, A080167.
Cf. A080167.
Sequence in context: A132121 A070957 A166744 * A063535 A091653 A088348
Adjacent sequences: A080162 A080163 A080164 * A080166 A080167 A080168
|
|
|
KEYWORD
| nonn,base
|
|
|
AUTHOR
| Reinhard Zumkeller (reinhard.zumkeller(AT)gmail.com), Feb 03 2003
|
| |
|
|