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!)
A249448 Largest n-digit prime whose digit sum is also prime. 3

%I #25 Jun 20 2023 15:34:50

%S 7,89,991,9967,99991,999983,9999971,99999989,999999937,9999999943,

%T 99999999821,999999999989,9999999999971,99999999999923,

%U 999999999999883,9999999999999851,99999999999999997,999999999999999967,9999999999999999919,99999999999999999989,999999999999999999829

%N Largest n-digit prime whose digit sum is also prime.

%C Subsequence of A046704 (primes with digit sum being prime).

%C Some terms of this sequence are also in A003618, the largest n-digit primes.

%H Paolo P. Lava, <a href="/A249448/b249448.txt">Table of n, a(n) for n = 1..100</a>

%e a(1) = 7 because it is the largest prime with just one digit.

%e a(2) = 89 because it is the largest prime with 2 digits whose sum, 8 + 9 = 17, is a prime.

%e Again, a(7) = 9999971 because it is the largest prime with 7 digits whose sum is a prime: 9 + 9 + 9 + 9 + 9 + 7 + 1 = 53.

%p P:=proc(q) local a,b,k,n; for k from 0 to q do

%p for n from 10^(k+1)-1 by -1 to 10^k do if isprime(n) then a:=n; b:=0;

%p while a>0 do b:=b+(a mod 10); a:=trunc(a/10); od;

%p if isprime(b) then print(n); break; fi; fi;

%p od; od; end: P(10^3);

%t Table[Module[{p=NextPrime[10^n,-1]},While[!PrimeQ[Total[IntegerDigits[p]]],p=NextPrime[p,-1]];p],{n,25}] (* _Harvey P. Dale_, Jun 20 2023 *)

%o (PARI) a(n) = {p = precprime(10^n); while (!isprime(sumdigits(p)), p = precprime(p-1)); p;} \\ _Michel Marcus_, Oct 29 2014

%Y Cf. A046704, A103545, A249447.

%K nonn,base

%O 1,1

%A _Paolo P. Lava_, Oct 29 2014

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 July 13 15:36 EDT 2024. Contains 374284 sequences. (Running on oeis4.)