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!)
A343544 a(n) = n * Sum_{d|n} binomial(d+2,3)/d. 7
1, 6, 13, 32, 40, 94, 91, 184, 204, 320, 297, 612, 468, 770, 850, 1184, 986, 1752, 1349, 2280, 2114, 2662, 2323, 4184, 3125, 4264, 4266, 5740, 4524, 7660, 5487, 8352, 7546, 9180, 8470, 13212, 9176, 12654, 12194, 16640, 12382, 19628, 14233, 20724, 19590, 22034, 18471, 30416, 21462 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
G.f.: Sum_{k>=1} k * x^k/(1 - x^k)^4 = Sum_{k>=1} binomial(k+2,3) * x^k/(1 - x^k)^2.
MAPLE
f:= n -> n/6*add((d+1)*(d+2), d=numtheory:-divisors(n)):
map(f, [$1..100]); # Robert Israel, Apr 26 2021
MATHEMATICA
a[n_] := n * DivisorSum[n, Binomial[# + 2, 3]/# &]; Array[a, 50] (* Amiram Eldar, Apr 25 2021 *)
PROG
(PARI) a(n) = n*sumdiv(n, d, binomial(d+2, 3)/d);
(PARI) my(N=66, x='x+O('x^N)); Vec(sum(k=1, N, binomial(k+2, 3)*x^k/(1-x^k)^2))
CROSSREFS
Sequence in context: A101622 A256871 A192304 * A147330 A042607 A048693
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Apr 19 2021
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 April 23 08:28 EDT 2024. Contains 371905 sequences. (Running on oeis4.)