login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A136005
Numbers of the form 2^p - 1, where p is a prime number that is not the sum, minus 1, of a Pythagorean triple.
11
3, 7, 31, 127, 8191, 131071, 524287, 2147483647, 137438953471, 2199023255551, 8796093022207, 9007199254740991, 2305843009213693951, 147573952589676412927, 9444732965739290427391, 158456325028528675187087900671, 2535301200456458802993406410751
OFFSET
1,1
COMMENTS
See A136003 for the values of p.
LINKS
FORMULA
a(n) = 2^A136003(n) - 1.
EXAMPLE
a(3) = 31 because A136003(3) = 5 and 2^5 = 32 and 32-1 = 31.
MATHEMATICA
q[n_] := PrimeQ[n] && (n == 2 || Module[{d = Divisors[(n+1)/2]}, AllTrue[Range[3, Length[d]], d[[#]] >= 2 * d[[#-1]] &]]); 2^Select[Range[100], q] - 1 (* Amiram Eldar, Oct 20 2024 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Omar E. Pol, Dec 17 2007
EXTENSIONS
a(16)-a(17) from Amiram Eldar, Oct 20 2024
STATUS
approved