login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A283737
Numbers with digit sum 13 that are multiples of 13.
3
247, 364, 481, 715, 832, 1066, 1183, 1417, 1534, 1651, 2119, 2236, 2353, 2470, 2704, 2821, 3055, 3172, 3406, 3523, 3640, 4108, 4225, 4342, 4810, 5044, 5161, 5512, 6214, 6331, 7033, 7150, 7501, 8203, 8320, 9022, 10075, 10192, 10309, 10426, 10543, 10660, 11128, 11245
OFFSET
1,1
LINKS
EXAMPLE
a(1) = A143164(16) = 247 = 19*13,
a(90) = A143164(1186) = 25402 = 1954*13.
MATHEMATICA
With[{k = 13}, Select[Range@ 12000, Total@ IntegerDigits@ # == k && Divisible[#, k] &]] (* Michael De Vlieger, Mar 16 2017 *)
PROG
(PARI) for(k=1, 1000, if(13==sumdigits(m=13*k), print1(m", ")))
CROSSREFS
Intersection of A008595 and A143164.
Cf. A007953.
Sequence in context: A175043 A051977 A177213 * A020313 A318055 A261378
KEYWORD
nonn,base
AUTHOR
Zak Seidov, Mar 15 2017
STATUS
approved