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

A128261
a(n) = tau(n) + (n-1)*tau(n-1).
2
1, 3, 6, 9, 14, 14, 26, 18, 35, 31, 42, 28, 74, 30, 60, 65, 82, 40, 110, 44, 124, 88, 90, 54, 195, 79, 108, 114, 170, 66, 242, 68, 196, 136, 140, 149, 326, 78, 156, 164, 322, 90, 338, 92, 270, 274, 186, 104, 483, 153, 304, 210, 314, 114, 436, 228, 452, 232
OFFSET
1,2
LINKS
EXAMPLE
a(5) = 14 = (5 + 4 + 0 + 4 + 1), where (5, 4, 0, 4, 1) = row 5 of A128260.
MATHEMATICA
Table[DivisorSigma[0, n]+(n-1)DivisorSigma[0, n-1], {n, 60}] (* Harvey P. Dale, Sep 17 2020 *)
PROG
(PARI) a(n)={numdiv(n) + if(n > 1, (n-1)*numdiv(n-1))} \\ Andrew Howroyd, Aug 09 2018
CROSSREFS
Row sums of A128260.
Cf. A000005 (tau), A128229, A051731.
Sequence in context: A242339 A086838 A161669 * A310162 A310163 A310164
KEYWORD
nonn
AUTHOR
Gary W. Adamson, Feb 21 2007
EXTENSIONS
Name changed and terms a(11) and beyond from Andrew Howroyd, Aug 09 2018
STATUS
approved