OFFSET
1,1
COMMENTS
Concat(a,b) means decimal concatenation of a and b, i.e., a*10^[log_10(b)+1] + b, since we don't allow leading zeros in b. (However, allowing leading zeros in b would not give any additional term up to at least 10^6.)
This sequence has been suggested by David Wilson on the SeqFan mailing list, Nov 08 2008.
A possible variant would be to allow decomposition of k into an arbitrary number (>1) of substrings. If one requires decomposition of k into each of its digits, this yields A098771.
LINKS
Paolo P. Lava, Table of n, a(n) for n = 1..1000
EXAMPLE
a(1)=38 is in the sequence since sigma(38) = 60 = 4*15 = sigma(3)*sigma(8).
PROG
(PARI) is_A147616(n)={ local(p=1, s=sigma(n)); while( n>p*=10, n%p*10<p & next; s==sigma( n\p )*sigma( n%p ) & return(1))}
for(i=1, 9999, is_147616(n) & print1(n", "))
CROSSREFS
KEYWORD
base,easy,nonn
AUTHOR
M. F. Hasler, Nov 08 2008
EXTENSIONS
Precision about disallowed leading zeros, fix in PARI code, more cross references. - M. F. Hasler, Nov 09 2008
STATUS
approved