cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A067860 Primes which are 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).

Original entry on oeis.org

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
Offset: 1

Views

Author

Joseph L. Pe, Feb 15 2002

Keywords

Examples

			167 is the concatenation of 1, 6, 7 and 1+6 = 7.
		

Crossrefs

See A088291 for another version.

Programs

  • 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

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