OFFSET
1,1
COMMENTS
All of the entries are odd.
Subsequence of A017077. - Michel Marcus, Sep 02 2013
In general, the set of numbers with sum of base-b digits equal to b is a subset of { (b-1)*k + 1; k = 2, 3, 4, ... }. - M. F. Hasler, Dec 23 2016
LINKS
Michael S. Branicky, Table of n, a(n) for n = 1..10000
EXAMPLE
The 9-ary expansion of 17 is (1,8), which has sum of digits 9.
The 9-ary expansion of 169 is (2,0,7), which has sum of digits 9.
10 is not on the list since the 9-ary expansion of 10 is (1,1), which has sum of digits 2 not 9.
MATHEMATICA
Select[Range@ 750, Total@ IntegerDigits[#, 9] == 9 &] (* Michael De Vlieger, Dec 23 2016 *)
PROG
(Sage) [i for i in [0..1000] if sum(Integer(i).digits(base=9))==9]
(PARI) select( is(n)=sumdigits(n, 9)==9, [1..999]) \\ M. F. Hasler, Dec 23 2016
(Python)
agen = A226636gen(sod=9, base=9) # generator of terms using code in A226636
print([next(agen) for n in range(1, 55)]) # Michael S. Branicky, Jul 10 2022
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
Tom Edgar, Sep 01 2013
STATUS
approved