OFFSET
0,4
LINKS
Lars Blomberg, Table of n, a(n) for n = 0..997
FORMULA
EXAMPLE
For n = 2 there is only one digit '9' in the sequence 0, 1, 2, ..., 12.
For n = 3 there are 11 + 10 = 21 more digits '9' in { 19, 29, ..., 89, 90, ..., 99, 109, 119 }, where 99 accounts for two '9's.
PROG
(PARI) print1(c=N=0); for(n=1, 8, print1(", "c+=sum(k=N+1, N=N*10+n, #select(d->d==9, digits(k)))))
(PARI) A014824(n)=(10^n-1)*(10/81)-n/9;
A102684(n)=my(pow, f, g, h); sum(j=1, #Str(n), pow=10^j; f=floor(n/pow); g=floor(n/pow+1/10); h=(4/5+g)*pow; g*(2*n+2-h)-f*(2*n+2-(1+f)*pow))/2;
vector(50, n, A277849(n-1)) \\ Lars Blomberg, Nov 11 2020
CROSSREFS
KEYWORD
nonn,base
AUTHOR
M. F. Hasler, Nov 01 2016
EXTENSIONS
More terms from Lars Blomberg, Nov 05 2016
Replaced incorrect b-file by Lars Blomberg, Nov 11 2020
STATUS
approved