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!)
A087632 Number of n-digit primes ending in 7 in base 10. 4

%I #32 Aug 07 2018 11:22:07

%S 1,5,40,262,2103,17210,146590,1274284,11271819,101051725,915754298,

%T 8372478663,77114370790

%N Number of n-digit primes ending in 7 in base 10.

%F From _Iain Fox_, Aug 07 2018: (Start)

%F a(n) ~ (1/4) * Integral_{x=10^(n-1)..10^n} (dx/log(x)).

%F a(n) = A006879(n) - A087630(n) - A087631(n) - A087633(n), for n > 1.

%F (End)

%e a(2) = 5 as there exist 5 two-digit prime numbers (17, 37, 47, 67, and 97) with units place 7.

%e a(3) = 40, since there are 40 three-digit numbers with units place digit as 7.

%t Table[Length[Select[Range[10^n + 7, 10^(n + 1) - 3, 10], PrimeQ[#] &]], {n, 5}] (* _Alonso del Arte_, Apr 27 2014 *)

%o (Java) /** The terms of the sequences are generated by changing the range for j for the various numbers of digits. E.g., it ranges from 100 to 999 for three-digit numbers. */

%o float r, x;

%o int c = 0, count = 0;

%o for (float j = 100f; j < 1000f; j++) { for (float i = 2f; i < j; i++) { r = j % i; if (r == 0) c = 1; } if (c == 0) { x = j % 10; if (x == 7) count = count + 1; } c = 0; } System.out.println("count = " + count);

%o (PARI) a(n) = my(c=0); forprime(p=10^(n-1), 10^n, if(p%10==7, c++)); c \\ _Iain Fox_, Aug 07 2018

%Y Cf. A006879, A073507, A087630, A087631, A087633.

%K nonn,base,hard,more

%O 1,2

%A Meenakshi Srikanth (menakan_s(AT)yahoo.com) and _Amarnath Murthy_, Sep 15 2003

%E More terms from _Ray Chandler_, Oct 04 2003

%E Offset corrected by _Iain Fox_, Aug 07 2018

%E a(11) from _Iain Fox_, Aug 07 2018

%E a(12)-a(13) from _Giovanni Resta_, Aug 07 2018

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 April 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)