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!)
A243766 Decimal numbers which give three prime numbers when split into three equal parts whose sum is prime. No leading zeros. 2
223, 227, 232, 272, 322, 335, 337, 353, 355, 373, 377, 533, 535, 553, 557, 575, 577, 722, 733, 737, 755, 757, 773, 775, 111119, 111131, 111137, 111161, 111167, 111179, 111313, 111317, 111319, 111323, 111329, 111337, 111343, 111347, 111359, 111373, 111379, 111383 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
It appears that the sequence is infinite.
LINKS
EXAMPLE
111329 -> 11 + 13 + 29 = 53 = prime.
PROG
(Python)
from sympy import isprime, primerange
from itertools import count, islice, product
def agen(): yield from (a*10**(2*i) + b*10**i + c for i in count(1) for a, b, c in product(primerange(10**(i-1), 10**i), repeat=3) if isprime(a+b+c))
print(list(islice(agen(), 42))) # Michael S. Branicky, Dec 04 2022
(PARI) first(n) = { my(res = List()); for(i = 1, oo, pow10 = 10^i; pow100 = 100^i; forprime(p = 10^(i-1), 10^i, firstidigs = pow100 * p; forprime(q = 10^(i-1), 10^i, pandq = p+q; first2idigs = firstidigs + pow10*q; forprime(r = 10^(i-1), 10^i, if(isprime(pandq + r), c = first2idigs + r; listput(res, c); if(#res >= n, return(res) ) ) ) ) ) ) } \\ David A. Corneth, Dec 04 2022
CROSSREFS
Sequence in context: A163653 A178551 A105982 * A153424 A100607 A092623
KEYWORD
nonn,base
AUTHOR
Andreas Boe, Jun 10 2014
STATUS
approved

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 25 10:01 EDT 2024. Contains 371967 sequences. (Running on oeis4.)