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!)
A214342 Count of the decimal descendants of the n-th prime. 3

%I #22 Aug 17 2021 02:26:08

%S 23,22,11,23,1,14,4,40,15,6,7,13,1,14,5,0,9,16,11,4,15,1,1,0,3,10,28,

%T 0,12,0,8,1,1,9,5,1,4,1,0,2,0,6,2,5,10,19,3,5,5,6,8,5,7,0,5,3,5,8,4,1,

%U 2,5,1,2,2,0,9,5,0,7,7,2,11,9,2,2,0,0,4,28,0,7

%N Count of the decimal descendants of the n-th prime.

%C Prime q is a decimal descendant of prime p if q = p*10+k and 0<=k<=9.

%C The number of direct decimal descendants is A038800(p).

%C a(n) is the total count of direct decimal descendants of the n-th prime that are also prime, plus their decimal descendants that are prime, and so on.

%C Conjecture: no terms bigger than 35 after a(8)=40.

%H T. D. Noe, <a href="/A214342/b214342.txt">Table of n, a(n) for n = 1..10000</a>

%e prime(3)=5 has eleven descendants: 53, 59, 593, 599, 5939, 59393, 59399, 593933, 593993, 5939333, 59393339. So a(3)=11. All candidates of the form 5nnn1 and 5nnn7 are divisible by 3.

%e prime(5)=11, the only decimal descendant of 11 that is prime is 113, and because there are no primes between 1130 and 1140, a(5)=1.

%p A214342 := proc(n)

%p option remember;

%p local a,p,k,d ;

%p a := 0 ;

%p p := ithprime(n) ;

%p for k from 0 to 9 do

%p d := 10*p+k ;

%p if isprime(d) then

%p a := a+1+procname(numtheory[pi](d)) ;

%p end if;

%p end do:

%p return a;

%p end proc: # _R. J. Mathar_, Jul 19 2012

%t Table[t = {Prime[n]}; cnt = 0; While[t = Select[Flatten[Table[10*i + {1, 3, 7, 9}, {i, t}]], PrimeQ]; t != {}, cnt = cnt + Length[t]]; cnt, {n, 100}] (* _T. D. Noe_, Jul 24 2012 *)

%Y Cf. A214280, A055781, A055782, A055783, A055784.

%K nonn,base

%O 1,1

%A _Alex Ratushnyak_, Jul 12 2012

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 20 06:42 EDT 2024. Contains 371799 sequences. (Running on oeis4.)