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!)
A067860 n is prime and the concatenation of numbers n_1, n_2, n_3, in that order, with n_1 + n_2 = n_3 (leading zeros are forbidden for nonzero n_i). 2
101, 167, 257, 347, 617, 5813, 7411, 8311, 8513, 9413, 9817, 10111, 10313, 11213, 11617, 12113, 12517, 12829, 13417, 13619, 14243, 14519, 14923, 15217, 15823, 15859, 16061, 16319, 17623, 18119, 18523, 19423, 19697, 20323, 20929, 21517, 22123, 23537, 23629, 23831, 24547 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
David A. Corneth, PARI program
EXAMPLE
167 is the concatenation of 1, 6, 7 and 1+6 = 7.
PROG
(PARI) is(n)=if(n==101, return(1)); my(d=digits(n)); for(i=1, #d-2, for(j=i+1, #d-1, if(digits(fromdigits(d[1..i])+fromdigits(d[i+1..j]))==d[j+1..#d] && (d[i+1] || i==j+1), return(isprime(n))))); 0
select(is, primes(10^4)) \\ Charles R Greathouse IV, Sep 21 2015
(PARI) See PARI link \\ David A. Corneth, Mar 06 2021
CROSSREFS
See A088291 for another version.
Sequence in context: A142660 A123037 A142012 * A140037 A107209 A076613
KEYWORD
base,nonn
AUTHOR
Joseph L. Pe, Feb 15 2002
EXTENSIONS
More terms from Larry Reeves (larryr(AT)acm.org), Jun 11 2002
Data corrected and more terms from David A. Corneth, Mar 06 2021
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 July 22 15:14 EDT 2024. Contains 374505 sequences. (Running on oeis4.)