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

A079401
Partial sums of A079399.
1
3, 4, 6, 8, 11, 13, 16, 20, 23, 25, 29, 31, 34, 37, 41, 44, 48, 53, 57, 60, 65, 68, 72, 76, 81, 85, 90, 96, 101, 105, 110, 113, 117, 121, 126, 130, 135, 141, 146, 150, 156, 160, 165, 170, 176, 181, 187, 194, 200, 205, 210, 213, 217, 221, 226, 230, 235, 241, 246, 250
OFFSET
1,1
EXAMPLE
a(3) = 3+1+2 = 6.
MATHEMATICA
Accumulate[With[{br=Thread[Range[0, 9]->{3, 1, 2, 2, 3, 2, 3, 4, 3, 2}]}, Total/@ Table[ IntegerDigits[n]/.br, {n, 0, 100}]]] (* Harvey P. Dale, Aug 08 2016 *)
PROG
(PARI) { braille=[3, 1, 2, 2, 3, 2, 3, 4, 3, 2]; bs=0; for (n=0, 99, b=braille[n%10+1]; if (n>9, b=b+braille[n\10+1]); bs=bs+b; print1(bs", ")) }
CROSSREFS
Cf. A079399.
Sequence in context: A030711 A030761 A060903 * A156040 A325172 A365271
KEYWORD
nonn
AUTHOR
Jon Perry, Feb 16 2003
STATUS
approved