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.

Showing 1-3 of 3 results.

A088219 Coefficient of x^n in g.f.^n is A086608(n).

Original entry on oeis.org

1, 1, 1, 2, 2, 6, 12, 29, 64, 114, 404, 641, 2637, 3289, 15853, 22068, 98168, 164238, 547111, 1292502, 3020056, 10442124, 15954682, 79385179, 89229089, 576106142, 595912173, 3848976774, 4853522881, 23699101223, 44768315427, 132700765034
Offset: 0

Views

Author

Michael Somos, Sep 24 2003

Keywords

A086606 Triangle, read by rows, where the n-th row is the first n terms of the n-th self-convolution of the sequence formed by flattening this triangle.

Original entry on oeis.org

1, 1, 2, 1, 3, 9, 1, 4, 14, 32, 1, 5, 20, 55, 140, 1, 6, 27, 86, 243, 630, 1, 7, 35, 126, 392, 1099, 2870, 1, 8, 44, 176, 598, 1808, 5048, 13256, 1, 9, 54, 237, 873, 2835, 8433, 23454, 61389, 1, 10, 65, 310, 1230, 4272, 13495, 39640, 109400, 286710, 1, 11, 77
Offset: 0

Views

Author

Paul D. Hanna, Jul 23 2003

Keywords

Examples

			This triangle begins:
1;
1, 2;
1, 3,  9;
1, 4, 14,  32;
1, 5, 20,  55, 140;
1, 6, 27,  86, 243,  630;
1, 7, 35, 126, 392, 1099, 2870;
1, 8, 44, 176, 598, 1808, 5048, 13256; ...
The g.f. A(x) of this sequence as a flat list of coefficients begins:
A(x) = 1 + x + 2*x^2 + x^3 + 3*x^4 + 9*x^5 + x^6 + 4*x^7 + 14*x^8 + 32*x^9 + x^10 + 5*x^11 + 20*x^12 + 55*x^13 + 140*x^14 +...
such that the coefficients in A(x)^n, n>=1, forms the table:
A^1: [(1),1,  2,   1,   3,    9,    1,     4,    14,     32, ...];
A^2: [(1, 2), 5,   6,  12,   28,   33,    52,    67,    164, ...];
A^3: [(1, 3,  9), 16,  33,   72,  125,   222,   330,    646, ...];
A^4: [(1, 4, 14,  32), 73,  164,  334,   660,  1152,   2184, ...];
A^5: [(1, 5, 20,  55, 140), 336,  755,  1625,  3195,   6315, ...];
A^6: [(1, 6, 27,  86, 243,  630),1532,  3546,  7635,  16020, ...];
A^7: [(1, 7, 35, 126, 392, 1099, 2870), 7092, 16443,  36666, ...];
A^8: [(1, 8, 44, 176, 598, 1808, 5048, 13256),32761,  77384, ...];
A^9: [(1, 9, 54, 237, 873, 2835, 8433, 23454, 61389),153007, ...]; ...
where the lower triangular portion equals this sequence.
		

Crossrefs

Cf. A086607 (main diagonal), A086608 (row sums).

Programs

  • PARI
    /* As a flattened triangle: */
    {a(n)=local(t=(sqrt(8*n+1)+1)\2,A=1+sum(k=1,min(n-1,t),a(k)*x^k));if(n==0,1,polcoeff((A+x*O(x^n))^t,n-t*(t-1)/2))}
    for(n=0,60,print1(a(n),", "))

A086607 Main diagonal of triangle A086606: the n-th term of the n-th self-convolution of the sequence formed by flattening triangle A086606.

Original entry on oeis.org

1, 2, 9, 32, 140, 630, 2870, 13256, 61389, 286710, 1346004, 6351516, 30088071, 142997456, 681498600, 3255674016, 15585877627, 74752865964, 359121640259, 1727811098500, 8323912135434, 40149494252802, 193868148499388, 937055479499472, 4533362484840700
Offset: 1

Views

Author

Paul D. Hanna, Jul 23 2003

Keywords

Crossrefs

Cf. A086606, A086608 (row sums).
Showing 1-3 of 3 results.