login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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; text; internal format)
OFFSET
1,1
COMMENTS
Sum of reciprocals = 0.4257999816852453227652727311..
LINKS
EXAMPLE
2*2^2 + 1*2 + 1 = 11
MATHEMATICA
Select[Table[1+Sum[k 2^k, {k, n}], {n, 1000}], PrimeQ] (* T. D. Noe, 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; ) );
polypn2(n, p) = { x=n; y=1; for(m=1, p, y=y+m*x^m; ); return(y) }
trajpolyp(10, 2)
CROSSREFS
Cf. A055469 (for x=1).
Sequence in context: A111130 A337415 A264725 * A344946 A368618 A006938
KEYWORD
nonn
AUTHOR
Cino Hilliard, Nov 20 2003
EXTENSIONS
Corrected by T. D. Noe and Don Reble, Nov 15 2006
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 16 11:08 EDT 2024. Contains 371711 sequences. (Running on oeis4.)