The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A291691 Primes p such that gpf(lpf(2^p - 1) - 1) = p. 3
2, 3, 5, 7, 11, 13, 23, 29, 37, 43, 47, 53, 73, 79, 83, 97, 113, 131, 151, 173, 179, 181, 191, 197, 211, 223, 233, 239, 251, 263, 277, 281, 283, 307, 317, 337, 353, 359, 367, 383, 397, 419, 431, 439, 443, 457, 461, 463, 467, 487, 491, 499 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
This sequence has not been proved to be infinite.
The terms p such that 2^p - 1 is a Mersenne prime are 2, 3, 5, 7, and 13.
If p is prime, then gpf(lpf(2^p - 1) - 1) >= p.
Primes q such that gpf(lpf(2^q - 1) - 1) > q are A292237.
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..119
EXAMPLE
We have gpf(lpf(2^11 - 1) - 1) = gpf(23 - 1) = 11, so 11 is a term.
MATHEMATICA
lpf[n_] := FactorInteger[n][[1, 1]]; gpf[n_] := FactorInteger[n][[-1, 1]]; Select[ Prime@ Range@ 45, gpf[lpf[2^# - 1] - 1] == # &] (* Giovanni Resta, Aug 30 2017 *)
PROG
(PARI) listp(nn) = forprime(p=2, nn, if (vecmax(factor(vecmin(factor(2^p-1)[, 1])-1)[, 1]) == p, print1(p, ", ")); ); \\ Michel Marcus, Aug 30 2017
CROSSREFS
Contains A002515.
Sequence in context: A229289 A087634 A360932 * A178576 A360147 A038970
KEYWORD
nonn
AUTHOR
Thomas Ordowski, Aug 30 2017
EXTENSIONS
a(17)-a(26) from Michel Marcus, Aug 30 2017
a(27)-a(34) from Giovanni Resta, Aug 30 2017
a(35)-a(52) from Charles R Greathouse IV, Aug 30 2017
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 May 23 15:34 EDT 2024. Contains 372763 sequences. (Running on oeis4.)