OFFSET
1,1
LINKS
M. F. Hasler, Table of n, a(n) for n = 1..15 (all terms < 10^999).
Ray Ballinger, Woodall Primes: Definition and Status.
C. K. Caldwell, Woodall Numbers.
Brady Haran and Matt Parker, 383 is cool, Numberphile video, 2017.
Eric Weisstein's World of Mathematics, Woodall Number.
FORMULA
MATHEMATICA
Select[Table[n 2^n - 1, {n, 300}], PrimeQ] (* Harvey P. Dale, Jul 12 2012 *)
PROG
(PARI) for(n=2, 999, ispseudoprime(p=n*2^n-1)&&print1(p", ")) \\ M. F. Hasler, May 10 2017
(Python)
from sympy import isprime
def auptok(limit):
return list(filter(isprime, (k*2**k-1 for k in range(1, limit+1))))
print(auptok(1000)) # Michael S. Branicky, Jul 23 2021
CROSSREFS
KEYWORD
nonn,easy,nice,changed
AUTHOR
N. J. A. Sloane, Dec 30 1999
STATUS
approved