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

%I #20 Apr 26 2021 13:02:30

%S 1,6,13,32,40,94,91,184,204,320,297,612,468,770,850,1184,986,1752,

%T 1349,2280,2114,2662,2323,4184,3125,4264,4266,5740,4524,7660,5487,

%U 8352,7546,9180,8470,13212,9176,12654,12194,16640,12382,19628,14233,20724,19590,22034,18471,30416,21462

%N a(n) = n * Sum_{d|n} binomial(d+2,3)/d.

%H Robert Israel, <a href="/A343544/b343544.txt">Table of n, a(n) for n = 1..10000</a>

%F 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.

%p f:= n -> n/6*add((d+1)*(d+2),d=numtheory:-divisors(n)):

%p map(f, [$1..100]); # _Robert Israel_, Apr 26 2021

%t a[n_] := n * DivisorSum[n, Binomial[# + 2, 3]/# &]; Array[a, 50] (* _Amiram Eldar_, Apr 25 2021 *)

%o (PARI) a(n) = n*sumdiv(n, d, binomial(d+2, 3)/d);

%o (PARI) my(N=66, x='x+O('x^N)); Vec(sum(k=1, N, binomial(k+2, 3)*x^k/(1-x^k)^2))

%Y Cf. A000203, A038040, A059358, A309731, A343545, A343546, A343547.

%K nonn

%O 1,2

%A _Seiichi Manyama_, Apr 19 2021

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 16 01:40 EDT 2024. Contains 371696 sequences. (Running on oeis4.)