OFFSET
1,1
COMMENTS
Note that some terms have 2 "solutions", e.g., 11213 => 1 + 12 = 11 + 2 = 13. - Zak Seidov, Apr 30 2013
LINKS
Zak Seidov, Table of n, a(n) for n = 1..1000
EXAMPLE
12517 is a member as it can be digit partitioned in to 12,5 and 17, 12+5 =17.
3407 is not a member as the partitions 3, 4, 07 is not permitted though 3 + 4 = 7.
PROG
(PARI) is(n)=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], return(isprime(n))))); 0
select(is, primes(10^4)) \\ Charles R Greathouse IV, Sep 21 2015
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Amarnath Murthy, Sep 30 2003
EXTENSIONS
More terms from David Wasserman, Aug 04 2005
Definition clarified by N. J. A. Sloane, Mar 06 2021 at the suggestion of Tanya Khovanova
STATUS
approved