OFFSET
0,2
LINKS
Robert G. Wilson v, Table of n, a(n) for n = 0..3000
FORMULA
a(n) >= 2^n with equality for n <= 2. - Michel Marcus, Mar 19 2017
EXAMPLE
The third row of Pascal's triangle is 1 3 3 1. When each n here is replaced by sigma(n), the row becomes 1 4 4 1 with a sum of 10, so a(3) = 10.
MATHEMATICA
a[n_] := Sum[DivisorSigma[1, Binomial[n, i]], {i, 0, n}]; Table[a[i], {i, 1, 21}]
PROG
(PARI) a(n) = sum(k=0, n, sigma(binomial(n, k))); \\ Michel Marcus, Mar 17 2017
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Joseph L. Pe, Sep 30 2002
EXTENSIONS
More terms from Carl Najafi, Oct 10 2011
Offset changed to 0 by Editors, Mar 19 2017
STATUS
approved