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”).

A245338
Sum of digits of n written in fractional base 9/8.
0
0, 1, 2, 3, 4, 5, 6, 7, 8, 8, 9, 10, 11, 12, 13, 14, 15, 16, 15, 16, 17, 18, 19, 20, 21, 22, 23, 21, 22, 23, 24, 25, 26, 27, 28, 29, 26, 27, 28, 29, 30, 31, 32, 33, 34, 30, 31, 32, 33, 34, 35, 36, 37, 38, 33, 34, 35, 36, 37, 38, 39, 40, 41, 35, 36, 37, 38, 39
OFFSET
0,3
COMMENTS
The base 9/8 expansion is unique and thus the sum of digits function is well-defined.
FORMULA
a(n) = A007953(A024656(n)).
EXAMPLE
In base 9/8 the number 16 is represented by 87 and so a(16) = 8 + 7 = 15.
PROG
(Sage) # uses [basepqsum from A245355]
[basepqsum(9, 8, i) for i in [0..100]]
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Tom Edgar, Jul 18 2014
STATUS
approved