A306845 Sophie Germain primes which are Brazilian.
28792661, 78914411, 943280801, 7294932341, 30601685951, 919548423641, 2275869057821, 4172851565741, 4801096143881, 27947620155401, 29586967653101, 43573806645461, 119637719305001, 124484682222941, 148908227169101, 172723673300501
Offset: 1
Keywords
Examples
78914411 is a term because 2 * 78914411 + 1 = 157828823 is prime, so 78914411 is Sophie Germain prime, then, 78914411 = 1 + 94 + 94^2 + 94^3 + 94^4 = (11111)_94 and 78914411 is also a Brazilian prime.
Links
- Jon Grantham, Hester Graves, Brazilian Primes Which Are Also Sophie Germain Primes, arXiv:1903.04577 [math.NT], 2019.
- Bernard Schott, Les nombres brésiliens, Quadrature, no. 76, avril-juin 2010, pages 30-38; included here with permission from the editors of Quadrature.
Programs
-
PARI
lista(lim)=my(v=List(), t, k); for(n=2, sqrt(lim), t=1+n; k=1; while((t+=n^k++)<=lim, if(isprime(t) && isprime(2*t+1), listput(v, t)))); v = vecsort(Vec(v), , 8); \\ Michel Marcus, Mar 13 2019
Comments