OFFSET
1,1
EXAMPLE
Prime(3) = 5 and 3 + 5 = 8 is composite, so 8 is a term;
prime(6) = 13 and 6 + 1 + 3 = 10 is composite, so 10 is a term.
MAPLE
A007953 := proc(n) add(d, d=convert(n, base, 10)) ; end proc:
for n from 1 to 300 do a := A007953(n) +A007953(ithprime(n)) ; if a> 4 and not isprime(a) then printf("%d, ", a ) ; end if; end do: # R. J. Mathar, May 05 2010
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Juri-Stepan Gerasimov, Jan 12 2009
EXTENSIONS
Corrected (a(36) changed, a(48) inserted etc.) by R. J. Mathar, May 05 2010
STATUS
approved