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!)
A322236 a(n) = A322237(n) / (n*(n+1)/2), where A322237(n) = [x^(n-1)] Product_{k=1..n} (k + x + k*x^2), for n >= 1. 7

%I #15 Dec 28 2018 04:58:22

%S 1,1,4,16,126,946,11201,125609,1988645,29865749,592326527,11181850967,

%T 266546940947,6069884741155,169005305069771,4510734458734443,

%U 143664066858425883,4399531515393236907,157747037226275555718,5453223770914252146978,217372015577641986139848,8374038291341888594002908,367340884744321785348071011,15606634300050239405862650475

%N a(n) = A322237(n) / (n*(n+1)/2), where A322237(n) = [x^(n-1)] Product_{k=1..n} (k + x + k*x^2), for n >= 1.

%H Paul D. Hanna, <a href="/A322236/b322236.txt">Table of n, a(n) for n = 1..301</a>

%e The irregular triangle A322235 formed from coefficients of x^k in Product_{m=1..n} (m + x + m*x^2), for n >= 0, k = 0..2*n, begins

%e 1;

%e 1, 1, 1;

%e 2, 3, 5, 3, 2;

%e 6, 11, 24, 23, 24, 11, 6;

%e 24, 50, 131, 160, 215, 160, 131, 50, 24;

%e 120, 274, 825, 1181, 1890, 1815, 1890, 1181, 825, 274, 120;

%e 720, 1764, 5944, 9555, 17471, 19866, 24495, 19866, 17471, 9555, 5944, 1764, 720;

%e 5040, 13068, 48412, 85177, 173460, 223418, 313628, 302619, 313628, 223418, 173460, 85177, 48412, 13068, 5040;

%e 40320, 109584, 440684, 834372, 1860153, 2642220, 4120122, 4521924, 5320667, 4521924, 4120122, 2642220, 1860153, 834372, 440684, 109584, 40320; ...

%e in which the central terms equal A322238.

%e RELATED SEQUENCES.

%e Note that the terms in the secondary diagonal (A322237), beginning

%e [1, 3, 24, 160, 1890, 19866, 313628, 4521924, 89489025, 1642616195, ...]

%e may be divided by triangular numbers to obtain this sequence

%e [1, 1, 4, 16, 126, 946, 11201, 125609, 1988645, 29865749, 592326527, ...].

%t a[n_] := SeriesCoefficient[Product[k + x + k x^2, {k, 1, n}], {x, 0, n-1}]/ (n(n+1)/2);

%t Array[a, 24] (* _Jean-François Alcover_, Dec 28 2018 *)

%o (PARI) {T(n, k) = polcoeff( prod(m=1, n, m + x + m*x^2) +x*O(x^k), k)}

%o /* Print the irregular triangle */

%o for(n=0, 10, for(k=0, 2*n, print1( T(n, k), ", ")); print(""))

%o /* Print this sequence */

%o for(n=1, 30, print1( T(n, n-1)/(n*(n+1)/2), ", "))

%Y Cf. A322237, A322238.

%K nonn

%O 1,3

%A _Paul D. Hanna_, Dec 15 2018

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 24 10:49 EDT 2024. Contains 371935 sequences. (Running on oeis4.)