|
| |
|
|
A088579
|
|
Primes of the form n*x^n + (n-1)*x^(n-1) + . . . + x + 1 for x=2.
|
|
0
| |
|
|
3, 11, 643, 425987, 1909526242005090307, 23022895558580442706439279569724601504895911302154162237586282577237116573795771448387257510093253287303723617020373843853928820634751104133890051
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,1
|
|
|
COMMENTS
| Sum of reciprocals = 0.4257999816852453227652727311.. If x=1 this becomes A055469.
|
|
|
EXAMPLE
| 2*2^2 + 1*2 + 1 = 11
|
|
|
MATHEMATICA
| Select[Table[1+Sum[k 2^k, {k, n}], {n, 1000}], PrimeQ] - T. D. Noe (noe(AT)sspectra.com), Nov 15 2006
|
|
|
PROG
| (PARI) trajpolyp(n1, k) = { s=0; for(x1=0, n1, y1 = polypn2(k, x1); if(isprime(y1), print1(y1", "); s+=1.0/y1; ) ); print(); print(s) } polypn2(n, p) = { x=n; y=1; for(m=1, p, y=y+m*x^m; ); return(y) }
|
|
|
CROSSREFS
| Sequence in context: A205771 A097423 A111130 * A124984 A034797 A101710
Adjacent sequences: A088576 A088577 A088578 * A088580 A088581 A088582
|
|
|
KEYWORD
| nonn
|
|
|
AUTHOR
| Cino Hilliard (hillcino368(AT)gmail.com), Nov 20 2003
|
|
|
EXTENSIONS
| Corrected by T. D. Noe and Don Reble, Nov 15, 2006
|
| |
|
|