The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A330088 a(n) = Sum_{k=1..n} binomial(n,k) * sigma(k) * sigma(n - k + 1), where sigma = A000203. 2
1, 9, 43, 155, 511, 1442, 4131, 10323, 28171, 63987, 171667, 369395, 957958, 2047694, 5078963, 10671529, 26542339, 53522031, 132273403, 268623854, 647842889, 1266118858, 3197923083, 6058756355, 14581380971, 29480406552, 68634048862, 131847974143, 323289015466, 611887749996 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
E.g.f.: (1/2) * d/dx (Sum_{k>=1} sigma(k) * x^k / k!)^2.
MATHEMATICA
Table[Sum[Binomial[n, k] DivisorSigma[1, k] DivisorSigma[1, n - k + 1], {k, 1, n}], {n, 1, 30}]
nmax = 30; CoefficientList[Series[(1/2) D[Sum[DivisorSigma[1, k] x^k/k!, {k, 1, nmax}]^2, x], {x, 0, nmax}], x] Range[0, nmax]! // Rest
PROG
(Magma) [&+[Binomial(n, k)*DivisorSigma(1, k)*DivisorSigma(1, n-k+1):k in [1..n]]:n in [1..30]]; // Marius A. Burtea, Dec 03 2019
(PARI) a(n) = sum(k=1, n, binomial(n, k)*sigma(k)*sigma(n-k+1)); \\ Michel Marcus, Dec 05 2019
CROSSREFS
Sequence in context: A181945 A244869 A259181 * A281773 A220676 A110125
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Dec 03 2019
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified June 9 18:06 EDT 2024. Contains 373248 sequences. (Running on oeis4.)