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!)
A132616 Column 0 of triangle A132615. 5

%I #14 Apr 12 2020 21:41:32

%S 1,1,1,6,80,1666,47232,1694704,73552752,3744491970,218684051648,

%T 14406896813608,1056681951098592,85379764462169382,

%U 7534286318509305600,720884741940337283712,74330131862002429961712,8215901579822006354547330,969069489665924620416715008

%N Column 0 of triangle A132615.

%C Triangle T = A132615 is generated by odd matrix powers of itself such that row n+1 of T = row n of T^(2n-1) with appended '1' for n >= 0 with T(0,0) = 1.

%F From _Benedict W. J. Irwin_, Nov 29 2016: (Start)

%F Conjecture: a(n) is described by a series of nested sums,

%F a(2) = Sum_{i=1..1} 1,

%F a(3) = Sum_{i=1..1+2} Sum_{j=1..i} 1,

%F a(4) = Sum_{i=1..1+4} Sum_{j=1..i+2} Sum_{k=1..j} 1,

%F a(5) = Sum_{i=1..1+6} Sum_{j=1..i+4} Sum_{k=1..j+2} Sum_{l=1..k} 1,

%F and so on, where 2, 4, 6,... are the even numbers. (End)

%e G.f. = 1 + x + x^2 + 6*x^3 + 80*x^4 + 1666*x^5 + 47232*x^6 + ...

%t a[ n_, k_: 1] := a[n, k] = If[ n < 2, Boole[n >= 0], Sum[ a[n - 1, i], {i, k + 2 (n - 2)}]]; (* _Michael Somos_, Nov 29 2016 *)

%o (PARI) {a(n) = my(A = vector(n+1), p); A[1] = 1; for(j=1, n-1, p = (n-1)*(n-2) - (n-j-1)*(n-j-2); A = Vec((Polrev(A) + x * O(x^p)) / (1-x))); A = Vec((Polrev(A) + x * O(x^p)) / (1-x)); A[p+1]}

%o (PARI) {a(n, k=1) = if( n<2, n>=0, sum(i=1, k + 2*n-4, a(n-1, i)))}; /* _Michael Somos_, Nov 29 2016 */

%Y Cf. A132615 (triangle).

%Y Other columns: A132617, A132618, A132619.

%K nonn

%O 0,4

%A _Paul D. Hanna_, Aug 24 2007

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 September 17 10:16 EDT 2024. Contains 375987 sequences. (Running on oeis4.)