cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A132612 Column 1 of triangle A132610.

This page as a plain text file.
%I A132612 #7 May 07 2018 22:43:21
%S A132612 1,1,4,39,648,15465,483240,18685905,861282832,46085893011,
%T A132612 2807152825020,191731595897600,14510053796849640,1205013817282706730,
%U A132612 108941005329522201360,10650027832902977866245,1119401271751383414197280,125879457463215695125460535
%N A132612 Column 1 of triangle A132610.
%C A132612 Triangle T=A132610 is generated by even matrix powers of itself such that row n+1 of T = row n of T^(2n) with appended '1' for n>=0 with T(0,0)=1.
%F A132612 a(n) is divisible by n for n>0; a(n)/n = A132614(n).
%F A132612 a(n) = [x^(n-1)] (1+x)^(n*(n+1)) / F(x) for n>0, where F(x) is the g.f. of A304192.
%o A132612 (PARI) {a(n)=local(A=vector(n+2), p); A[1]=1; for(j=1, n-1, p=n^2-(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 A132612 for(n=0,25,print1(a(n),", "))
%o A132612 (PARI) {a(n)=local(A=[1]);for(i=1,n,A=Vec(Ser(A)/(1-x)^(2*(#A)-1));A=concat(A,A[#A]));A[#A]}
%o A132612 for(n=0,25,print1(a(n),", "))
%Y A132612 Cf. A132610 (triangle); other columns: A132611, A132613; A132614.
%Y A132612 Cf. A304192.
%K A132612 nonn
%O A132612 0,3
%A A132612 _Paul D. Hanna_, Aug 23 2007