A237052
Numbers n such that (49^n + 1)/50 is prime.
Original entry on oeis.org
7, 19, 37, 83, 1481, 12527, 20149
Offset: 1
- J. Brillhart et al., Factorizations of b^n +- 1, Contemporary Mathematics, Vol. 22, Amer. Math. Soc., Providence, RI, 3rd edition, 2002.
- H. Dubner and T. Granlund, Primes of the Form (b^n+1)/(b+1), J. Integer Sequences, 3 (2000), #P00.2.7.
- H. Lifchitz, Mersenne and Fermat primes field
- Eric Weisstein's World of Mathematics, Repunit.
Cf.
A000978 = numbers n such that (2^n + 1)/3 is prime.
Cf.
A007658,
A057171,
A057172,
A057173,
A057175,
A001562,
A057177,
A057178,
A057179,
A057180,
A057181,
A057182,
A057183,
A057184,
A057185,
A057186,
A057187,
A057188,
A057189,
A057190,
A057191,
A071380,
A071381,
A071382,
A084741,
A084742,
A065507,
A126659,
A126856,
A185240,
A229145,
A229524,
A230036,
A229663,
A231604,
A231865,
A235683,
A236167,
A236530.
-
Do[ p=Prime[n]; If[ PrimeQ[ (49^p + 1)/50 ], Print[p] ], {n, 1, 9592} ]
-
is(n)=ispseudoprime((49^n+1)/50) \\ Charles R Greathouse IV, Jun 13 2017
A309533
Numbers k such that (144^k + 1)/145 is prime.
Original entry on oeis.org
23, 41, 317, 3371, 45259, 119671
Offset: 1
Cf.
A000978,
A007658,
A057171,
A057172,
A057173,
A057175,
A001562,
A057177,
A057178,
A057179,
A057180,
A057181,
A057182,
A057183,
A057184,
A057185,
A057186,
A057187,
A057188,
A057189,
A057190,
A057191,
A071380,
A071381,
A071382,
A126856,
A185240.
-
Do[p=Prime[n]; If[PrimeQ[(144^p + 1)/145], Print[p]], {n, 1, 1000000}]
-
is(n)=ispseudoprime((144^n+1)/145)
A236167
Numbers k such that (47^k + 1)/48 is prime.
Original entry on oeis.org
5, 19, 23, 79, 1783, 7681
Offset: 1
- J. Brillhart et al., Factorizations of b^n +- 1, Contemporary Mathematics, Vol. 22, Amer. Math. Soc., Providence, RI, 3rd edition, 2002.
- H. Dubner and T. Granlund, Primes of the Form (b^n+1)/(b+1), J. Integer Sequences, 3 (2000), #P00.2.7.
- H. Lifchitz, Mersenne and Fermat primes field.
- Eric Weisstein's World of Mathematics, Repunit.
Cf.
A000978 = numbers k such that (2^k + 1)/3 is prime. Cf.
A007658,
A057171,
A057172,
A057173,
A057175,
A001562,
A057177,
A057178,
A057179,
A057180,
A057181,
A057182,
A057183,
A057184,
A057185,
A057186,
A057187,
A057188,
A057189,
A057190,
A057191,
A071380,
A071381,
A071382,
A084741,
A084742,
A065507,
A126659,
A126856,
A185240,
A229145,
A229524,
A230036,
A229663,
A231604,
A231865,
A235683.
-
Do[ p=Prime[n]; If[ PrimeQ[ (47^p + 1)/48 ], Print[p] ], {n, 1, 9592} ]
-
is(n)=ispseudoprime((47^n+1)/48) \\ Charles R Greathouse IV, Jun 06 2017
-
from sympy import isprime
def afind(startat=0, limit=10**9):
pow47 = 47**startat
for k in range(startat, limit+1):
q, r = divmod(pow47+1, 48)
if r == 0 and isprime(q): print(k, end=", ")
pow47 *= 47
afind(limit=300) # Michael S. Branicky, May 19 2021
A185230
Numbers n such that (33^n + 1)/34 is prime.
Original entry on oeis.org
5, 67, 157, 12211, 313553
Offset: 1
- J. Brillhart et al., Factorizations of b^n +- 1, Contemporary Mathematics, Vol. 22, Amer. Math. Soc., Providence, RI, 3rd edition, 2002.
- H. Dubner and T. Granlund, Primes of the Form (b^n+1)/(b+1), J. Integer Sequences, 3 (2000), #P00.2.7.
- H. Lifchitz, Mersenne and Fermat primes field
- Eric Weisstein's World of Mathematics, Repunit.
Cf.
A000978 = numbers n such that (2^n + 1)/3 is prime. Cf.
A007658,
A057171,
A057172,
A057173,
A057175,
A001562,
A057177,
A057178,
A057179,
A057180,
A057181,
A057182,
A057183,
A057184,
A057185,
A057186,
A057187,
A057188,
A057189,
A057190,
A057191,
A071380,
A071381,
A071382. Cf.
A084741,
A084742,
A065507,
A126659,
A126856.
-
Do[ p=Prime[n]; If[ PrimeQ[ (33^p + 1)/34 ], Print[p] ], {n, 1, 9592} ]
-
is(n)=ispseudoprime((33^n+1)/34) \\ Charles R Greathouse IV, Jun 13 2017
A236530
Numbers n such that (48^n + 1)/49 is prime.
Original entry on oeis.org
5, 17, 131, 84589
Offset: 1
- J. Brillhart et al., Factorizations of b^n +- 1, Contemporary Mathematics, Vol. 22, Amer. Math. Soc., Providence, RI, 3rd edition, 2002.
- H. Dubner and T. Granlund, Primes of the Form (b^n+1)/(b+1), J. Integer Sequences, 3 (2000), #P00.2.7.
- H. Lifchitz, Mersenne and Fermat primes field
- Eric Weisstein's World of Mathematics, Repunit.
Cf.
A000978 = numbers n such that (2^n + 1)/3 is prime. Cf.
A007658,
A057171,
A057172,
A057173,
A057175,
A001562,
A057177,
A057178,
A057179,
A057180,
A057181,
A057182,
A057183,
A057184,
A057185,
A057186,
A057187,
A057188,
A057189,
A057190,
A057191,
A071380,
A071381,
A071382,
A084741,
A084742,
A065507,
A126659,
A126856,
A185240,
A229145,
A229524,
A230036,
A229663,
A231604,
A231865,
A235683,
A236167.
-
Do[ p=Prime[n]; If[ PrimeQ[ (48^p + 1)/49 ], Print[p] ], {n, 1, 9592} ]
-
is(n)=ispseudoprime((48^n+1)/49) \\ Charles R Greathouse IV, Jun 13 2017
A378115
Numbers k such that (23^k + 2^k)/25 is prime.
Original entry on oeis.org
3, 19, 61, 97, 397, 1511
Offset: 1
- P. Bourdelais, A Generalized Repunit Conjecture.
- J. Brillhart et al., Factorizations of b^n +- 1, Contemporary Mathematics, Vol. 22, Amer. Math. Soc., Providence, RI, 3rd edition, 2002.
- H. Dubner and T. Granlund, Primes of the Form (b^n+1)/(b+1), J. Integer Sequences, 3 (2000), #P00.2.7.
- H. Lifchitz, Mersenne and Fermat primes field
- Eric Weisstein's World of Mathematics, Repunit.
Cf.
A057187,
A057188,
A062587,
A062589,
A127996,
A127997,
A128344,
A204940,
A217320,
A225807,
A228922,
A229542,
A375161,
A375236,
A377031,
A377856.
A378953
Numbers k such that (29^k + 2^k)/31 is prime.
Original entry on oeis.org
3, 7, 11, 157, 1429, 2579, 11909
Offset: 1
- P. Bourdelais, A Generalized Repunit Conjecture.
- J. Brillhart et al., Factorizations of b^n +- 1, Contemporary Mathematics, Vol. 22, Amer. Math. Soc., Providence, RI, 3rd edition, 2002.
- H. Dubner and T. Granlund, Primes of the Form (b^n+1)/(b+1), J. Integer Sequences, 3 (2000), #P00.2.7.
- H. Lifchitz, Mersenne and Fermat primes field
- Eric Weisstein's World of Mathematics, Repunit.
Cf.
A057187,
A057188,
A062587,
A062589,
A127996,
A127997,
A128344,
A204940,
A217320,
A225807,
A228922,
A229542,
A375161,
A375236,
A377031,
A377856.
A379428
Numbers k such that (39^k + 2^k)/41 is prime.
Original entry on oeis.org
3, 5, 19, 2543, 4691, 14669, 19819, 53891, 83137
Offset: 1
- P. Bourdelais, A Generalized Repunit Conjecture.
- J. Brillhart et al., Factorizations of b^n +- 1, Contemporary Mathematics, Vol. 22, Amer. Math. Soc., Providence, RI, 3rd edition, 2002.
- H. Dubner and T. Granlund, Primes of the Form (b^n+1)/(b+1), J. Integer Sequences, 3 (2000), #P00.2.7.
- H. Lifchitz, Mersenne and Fermat primes field
- Eric Weisstein's World of Mathematics, Repunit.
Cf.
A057187,
A057188,
A062587,
A062589,
A127996,
A127997,
A128344,
A204940,
A217320,
A225807,
A228922,
A229542,
A375161,
A375236,
A377031,
A377856.
A379429
Numbers k such that (31^k + 2^k)/33 is prime.
Original entry on oeis.org
229, 1429, 36083, 44089
Offset: 1
- P. Bourdelais, A Generalized Repunit Conjecture.
- J. Brillhart et al., Factorizations of b^n +- 1, Contemporary Mathematics, Vol. 22, Amer. Math. Soc., Providence, RI, 3rd edition, 2002.
- H. Dubner and T. Granlund, Primes of the Form (b^n+1)/(b+1), J. Integer Sequences, 3 (2000), #P00.2.7.
- H. Lifchitz, Mersenne and Fermat primes field
- Eric Weisstein's World of Mathematics, Repunit.
Cf.
A057187,
A057188,
A062587,
A062589,
A127996,
A127997,
A128344,
A204940,
A217320,
A225807,
A228922,
A229542,
A375161,
A375236,
A377031,
A377856.
A379986
Numbers k such that (20^k + 3^k)/23 is prime.
Original entry on oeis.org
3, 19, 271, 577, 977, 1871, 8647, 9479, 34759, 44959, 63149
Offset: 1
- P. Bourdelais, A Generalized Repunit Conjecture.
- J. Brillhart et al., Factorizations of b^n +- 1, Contemporary Mathematics, Vol. 22, Amer. Math. Soc., Providence, RI, 3rd edition, 2002.
- H. Dubner and T. Granlund, Primes of the Form (b^n+1)/(b+1), J. Integer Sequences, 3 (2000), #P00.2.7.
- H. Lifchitz, Mersenne and Fermat primes field
- Eric Weisstein's World of Mathematics, Repunit.
Cf.
A057187,
A057188,
A062587,
A062589,
A127996,
A127997,
A128344,
A204940,
A217320,
A225807,
A228922,
A229542,
A375161,
A375236,
A377031,
A377856.
Comments