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!)
A246806 Number of n-digit numbers whose base-10 representations can be written as the concatenations of 0 or more prime numbers (also expressed in base 10). 2

%I #36 Mar 27 2021 03:54:24

%S 1,4,33,285,2643,24920,239543,2327458,22801065,224608236,2222034266,

%T 22053438268

%N Number of n-digit numbers whose base-10 representations can be written as the concatenations of 0 or more prime numbers (also expressed in base 10).

%C Here we assume all representations involved are "canonical", that is, have no leading zeros. 1 is not a prime, and neither is 0.

%e For n = 2 the 33 numbers counted include the 21 primes between 10 and 99, and also the 12 numbers {22,25,27,32,33,35,52,55,57,72,75,77}.

%p P[1]:= {2,3,5,7}: C[1]:= P[1]:

%p for n from 2 to 7 do

%p P[n]:= select(isprime, {seq(2*i+1, i=10^(n-1)/2 .. 5*10^(n-1)-1)});

%p C[n]:= `union`(P[n],seq({seq(seq(c*10^j+p,p=P[j]),c=C[n-j])},j=1..n-1));

%p od:

%p 1, seq(nops(C[n]),n=1..7); # _Robert Israel_, Dec 07 2014

%o (Python)

%o from sympy import isprime, primerange

%o from functools import lru_cache

%o @lru_cache(maxsize=None)

%o def ok(n):

%o if n%10 not in {1, 2, 3, 5, 7, 9}: return False

%o if isprime(n): return True

%o d = str(n)

%o for i in range(1, len(d)):

%o if d[i] != '0' and isprime(int(d[:i])) and ok(int(d[i:])): return True

%o return False

%o def a(n): return 1 if n == 0 else sum(ok(m) for m in range(10**(n-1), 10**n))

%o print([a(n) for n in range(7)]) # _Michael S. Branicky_, Mar 26 2021

%Y Cf. A006879, A246807.

%K nonn,base,hard,more

%O 0,2

%A _Jeffrey Shallit_, Nov 16 2014

%E a(9) from _Jeffrey Shallit_, Dec 07 2014

%E a(10)-a(11) from _Lars Blomberg_, Feb 09 2019

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 May 10 11:28 EDT 2024. Contains 372387 sequences. (Running on oeis4.)