OFFSET
1,1
LINKS
Metin Sariyar, Table of n, a(n) for n = 1..10000
Caldwell and Honaker, Prime Curio for 41.
EXAMPLE
41 is a term because 41 = 131 in base 5 = 1 + 4.
MATHEMATICA
Select[Range[10^5], #==IntegerReverse[#, Total[IntegerDigits[#]]]&]
PROG
(PARI) isok(n) = my(s=sumdigits(n)); if (s> 1, my(d = digits(n, s)); d == Vecrev(d)); \\ Michel Marcus, Sep 26 2019
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Metin Sariyar, Sep 26 2019
STATUS
approved