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.

Previous Showing 11-13 of 13 results.

A244889 Second column of triangle in A244888.

Original entry on oeis.org

1, -6, 36, -229, 1574, -11706, 93831
Offset: 2

Views

Author

N. J. A. Sloane, Jul 12 2014

Keywords

Comments

Remmel (2014) asks for a formula.

Crossrefs

A351658 G.f. A(x) satisfies: A(x) = 1 - x * A(x/(1 - x)^2) / (1 - x).

Original entry on oeis.org

1, -1, 0, 2, 3, -8, -61, -134, 567, 6908, 29631, -33857, -1624011, -13579197, -42493684, 449043601, 8591509012, 71167884338, 153434398957, -5188374785607, -95914651874891, -882652244738780, -1819090127593647, 96780404956817315, 2051640887011218601
Offset: 0

Views

Author

Ilya Gutkovskiy, Feb 16 2022

Keywords

Crossrefs

Programs

  • Mathematica
    nmax = 24; A[] = 0; Do[A[x] = 1 - x A[x/(1 - x)^2]/(1 - x) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
    a[0] = 1; a[n_] := a[n] = -Sum[Binomial[n + k - 1, n - k - 1] a[k], {k, 0, n - 1}]; Table[a[n], {n, 0, 24}]

Formula

a(0) = 1; a(n) = -Sum_{k=0..n-1} binomial(n+k-1,n-k-1) * a(k).

A186023 Eigentriangle of triangle A085478.

Original entry on oeis.org

1, 1, 1, 2, 1, 1, 6, 4, 1, 1, 23, 15, 6, 1, 1, 106, 68, 28, 8, 1, 1, 567, 365, 145, 45, 10, 1, 1, 3434, 2215, 877, 262, 66, 12, 1, 1, 23137, 14917, 5936, 1750, 427, 91, 14, 1, 1, 171174, 110324, 43936, 13020, 3108, 648, 120, 16, 1, 1, 1376525, 887232, 353067, 104904, 25125, 5091, 933, 153, 18, 1, 1
Offset: 0

Views

Author

Paul Barry, Feb 10 2011

Keywords

Comments

First column is A125273. Inverse of A186024. Rows sums are A125273(n)*(2-0^n).

Examples

			Triangle begins
       1;
       1,      1;
       2,      1,     1;
       6,      4,     1,     1;
      23,     15,     6,     1,    1;
     106,     68,    28,     8,    1,   1;
     567,    365,   145,    45,   10,   1,   1;
    3434,   2215,   877,   262,   66,  12,   1,  1;
   23137,  14917,  5936,  1750,  427,  91,  14,  1, 1;
  171174, 110324, 43936, 13020, 3108, 648, 120, 16, 1, 1;
		

Crossrefs

Previous Showing 11-13 of 13 results.