OFFSET
1,1
LINKS
Paolo Xausa, Table of n, a(n) for n = 1..10000 (terms 1..5001 from Carole Dubois).
EXAMPLE
a(1) = 38 and 38 is 11*3 with remainder 5;
a(2) = 53 and 53 is 8*6 with remainder 5; etc.
MATHEMATICA
A341172Q[k_] := Mod[k, Total[IntegerDigits[k]]] == 5;
Select[Range[1200], A341172Q] (* Paolo Xausa, Dec 02 2025 *)
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Eric Angelini and Carole Dubois, Feb 06 2021
STATUS
approved
