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.

A370051 Expansion of (1-5*x+6*x^2-x^3)/(1-9*x+28*x^2-35*x^3+15*x^4-x^5).

Original entry on oeis.org

1, 4, 14, 48, 165, 572, 2002, 7071, 25176, 90251, 325358, 1178291, 4282811, 15612092, 57040186, 208772476, 765186422, 2807556411, 10309833845, 37883902913, 139275229088, 512223805060, 1884404481767, 6934058102453, 25519786076294
Offset: 0

Views

Author

Peter Morris, Feb 08 2024

Keywords

Comments

In Pascal's triangle, subtract the 6th column to the left of the central column from the 2nd column.

Examples

			a(0) = binomial(2,0);
a(1) = binomial(4,1);
a(2) = binomial(6,2) - binomial(6,0);
a(3) = binomial(8,3) - binomial(8,1);
a(4) = binomial(10,4) - binomial(10,2).
		

Crossrefs

Programs

  • Mathematica
    LinearRecurrence[{9, -28, 35, -15, 1}, {1, 4, 14, 48, 165}, 30] (* Paolo Xausa, Feb 20 2024 *)

Formula

a(n) = 9*a(n-1) - 28*a(n-2) + 35*a(n-3) - 15*a(n-4) + a(n-5); a(0) = 1, a(1) = 4, a(2) = 14, a(3) = 48, a(4) = 165.