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”).

Number of Sophie Germain primes of the form 4k + 1 less than 10^n.
1

%I #32 Jun 06 2019 15:32:29

%S 1,5,17,89,589,3833,27940,211439,1653257,13283194,109058142,911411528,

%T 7731354496

%N Number of Sophie Germain primes of the form 4k + 1 less than 10^n.

%C Sophie Germain primes can alternatively be Lucasian primes, primes of the form 4k + 1, or, the individual prime 2.

%F a(n) < A092816(n).

%F a(n) <= A091098(n) (with equality for n = 1).

%F a(n) = A092816(n) - A307121(n) - 1.

%e There are five Sophie Germain Primes of the form 4k + 1 below 10^2: {5, 29, 41, 53, 89}, therefore a(2) = 5.

%t nonLucSophies = Select[4Range[2500000] + 1, PrimeQ[#] && PrimeQ[2# + 1] &]; Table[Length[Select[nonLucSophies, # < 10^n &]], {n, 0, 7}]

%Y Cf. A091098, A092816, A002515, A307121, A002144, A005384, A103579.

%K nonn,more

%O 1,2

%A _Rodolfo Ruiz-Huidobro_, Mar 27 2019