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.
%I A145350 #18 Jan 11 2016 11:08:09 %S A145350 1,1,3,18,154,1632,20007,273164,4058556,64628487,1091488334, %T A145350 19403175105,361028420037,7000932594042,141010975529568, %U A145350 2942134448306481,63449975020918843,1411787024678728344,32360032648643379471,763096191377494726161,18491954778730596443088 %N A145350 G.f. satisfies: A(x/A(x)^2) = 1 + x*A(x). %C A145350 More generally, if g.f. A(x) satisfies: A(x/A(x)^k) = 1 + x*A(x)^m, then %C A145350 A(x) = 1 + x*G(x)^(m+k) where G(x) = A(x*G(x)^k) and G(x/A(x)^k) = A(x); %C A145350 thus a(n) = [x^(n-1)] ((m+k)/(m+k*n))*A(x)^(m+k*n) for n>=1 with a(0)=1. %H A145350 Vaclav Kotesovec, <a href="/A145350/b145350.txt">Table of n, a(n) for n = 0..374</a> %F A145350 G.f.: A(x) = 1 + x*G(x)^3 where G(x) = A(x*G(x)^2) and A(x) = G(x/A(x)^2). %F A145350 a(n) = [x^(n-1)] 3*A(x)^(2*n+1)/(2*n+1) for n>=1 with a(0)=1; i.e., a(n) equals the coefficient of x^(n-1) in 3*A(x)^(2*n+1)/(2*n+1) for n>=1. %e A145350 G.f.: A(x) = 1 + x + 3*x^2 + 18*x^3 + 154*x^4 + 1632*x^5 +... %e A145350 A(x)^2 = 1 + 2*x + 7*x^2 + 42*x^3 + 353*x^4 + 3680*x^5 + 44526*x^6+... %e A145350 A(x/A(x)^2) = 1 + x + x^2 + 3*x^3 + 18*x^4 + 154*x^5 + 1632*x^6 +... %e A145350 A(x) = 1 + x*G(x)^3 where G(x) = A(x*G(x)^2): %e A145350 G(x) = 1 + x + 5*x^2 + 41*x^3 + 432*x^4 + 5329*x^5 + 73512*x^6 +... %e A145350 G(x)^2 = 1 + 2*x + 11*x^2 + 92*x^3 + 971*x^4 + 11932*x^5 +... %e A145350 To illustrate the formula a(n) = [x^(n-1)] 3*A(x)^(2*n+1)/(2*n+1), %e A145350 form a table of coefficients in A(x)^(2*n+1) as follows: %e A145350 A^3: [(1), 3, 12, 73, 606, 6225, 74370, 994668, ...]; %e A145350 A^5: [1, (5), 25, 160, 1315, 13191, 153930, 2017620, ...]; %e A145350 A^7: [1, 7, (42), 287, 2373, 23436, 267988, 3445835, ...]; %e A145350 A^9: [1, 9, 63, (462), 3888, 38106, 428637, 5414760, ...]; %e A145350 A^11: [1, 11, 88, 693, (5984), 58619, 651354, 8099410, ...]; %e A145350 A^13: [1, 13, 117, 988, 8801, (86697), 955656, 11723712, ...]; %e A145350 A^15: [1, 15, 150, 1355, 12495, 124398, (1365820), 16571385, ...]; ... %e A145350 in which the main diagonal forms the initial terms of this sequence: %e A145350 [3/3*(1), 3/5*(5), 3/7*(42), 3/9*(462), 3/11*(5984), 3/13*(86697), ...]. %e A145350 ALTERNATE GENERATING METHOD. %e A145350 This sequence forms column zero in the follow array. %e A145350 Let A denote this sequence, and A^2 the self-convolution square of A. %e A145350 Start in row zero with this sequence, A, after prepending an initial '1', then repeat: drop the initial term and perform convolution with A^2 and the remaining terms in a given row to obtain the next row: %e A145350 [1, 1, 1, 3, 18, 154, 1632, 20007, 273164, 4058556, 64628487, ...]; %e A145350 [1, 3, 12, 73, 606, 6225, 74370, 994668, 14535285, 228349287, ...]; %e A145350 [3, 18, 118, 962, 9511, 109404, 1415942, 20128565, 309001962, ...]; %e A145350 [18, 154, 1324, 13017, 146470, 1849625, 25701033, 386747469, ...]; %e A145350 [154, 1632, 16743, 188240, 2343654, 32006379, 473572975, ...]; %e A145350 [1632, 20007, 233150, 2905879, 39290669, 573813430, 8978918475, ...]; %e A145350 [20007, 273164, 3512228, 47574771, 689590692, 10679554646, ...]; %e A145350 [273164, 4058556, 56511375, 820798718, 12635699895, ...]; %e A145350 [4058556, 64628487, 962231360, 14843336308, 241004566025, ...]; ... %o A145350 (PARI) {a(n)=local(A=1+x,G);for(i=0,n,G=(serreverse(x/(A+x*O(x^n))^2)/x)^(1/2);A=1+x*G^3);polcoeff(A,n)} %o A145350 (PARI) /* This sequence is generated when k=2, m=1: A(x/A(x)^k) = 1 + x*A(x)^m */ %o A145350 {a(n, k=2, m=1)=local(A=sum(i=0, n-1, a(i, k, m)*x^i)+x*O(x^n)); if(n==0, 1, polcoeff((m+k)/(m+k*n)*A^(m+k*n), n-1))} %o A145350 for(n=0,20,print1(a(n),", ")) %o A145350 (PARI) /* Prints terms 0..30 */ %o A145350 {A=[1]; %o A145350 for(m=1,30, %o A145350 B=A; %o A145350 for(i=1,m-1, C=Vec(Ser(A)^2*Ser(B)); B=vector(#C-1,n,C[n+1]) ); %o A145350 A=concat(A,0);A[#A]=B[1] %o A145350 ); %o A145350 A} \\ _Paul D. Hanna_, Jan 10 2016 %Y A145350 Cf. variants: A001764, A147664, A120972, A145345, A145349, A147664. %K A145350 nonn %O A145350 0,3 %A A145350 _Paul D. Hanna_, Nov 12 2008