OFFSET
1,1
COMMENTS
This is a variation of A139285 that has terms beyond n=10.
EXAMPLE
a(5)=145 because 145 read in base 15 is 1*15^2+4*15+5=290 = 2*145 and no other number below 145 has this property except for the trivial values < 10.
PROG
(PARI) a(n) = my(k=10); while(fromdigits(digits(k), n+10) % k, k++); k; \\ Michel Marcus, Nov 16 2024
CROSSREFS
KEYWORD
base,nonn,new
AUTHOR
Sergio Pimentel, Nov 14 2024
EXTENSIONS
More terms from Michel Marcus, Nov 16 2024
STATUS
approved