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-2 of 2 results.

A098581 Expansion of (1+2*x+4*x^2)/(1-x-8*x^4).

Original entry on oeis.org

1, 3, 7, 7, 15, 39, 95, 151, 271, 583, 1343, 2551, 4719, 9383, 20127, 40535, 78287, 153351, 314367, 638647, 1264943, 2491751, 5006687, 10115863, 20235407, 40169415, 80222911, 161149815, 323033071, 644388391, 1286171679, 2575370199
Offset: 0

Views

Author

Paul Barry, Sep 16 2004

Keywords

Crossrefs

Programs

  • Magma
    I:=[1,3,7,7]; [n le 4 select I[n] else Self(n-1) + 8*Self(n-4): n in [1..30]]; // G. C. Greubel, Feb 03 2018
  • Mathematica
    CoefficientList[Series[(1+2x+4x^2)/(1-x-8x^4),{x,0,40}],x] (* or *) LinearRecurrence[{1,0,0,8},{1,3,7,7},40] (* Harvey P. Dale, Feb 04 2015 *)
  • PARI
    x='x+O('x^30); Vec((1+2*x+4*x^2)/(1-x-8*x^4)) \\ G. C. Greubel, Feb 03 2018
    

Formula

a(n) = a(n-1) + 8*a(n-4).
a(n) = Sum_{k=0..n} binomial(n-k, floor(k/3)) * 2^k.

A152906 Irregular triangle read by rows, numbers in A007318 repeated three times .

Original entry on oeis.org

1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 1, 1, 1, 1, 1, 1, 3, 3, 3, 3, 3, 3, 1, 1, 1, 1, 1, 1, 4, 4, 4, 6, 6, 6, 4, 4, 4, 1, 1, 1, 1, 1, 1, 5, 5, 5, 10, 10, 10, 10, 10, 10, 5, 5, 5, 1, 1, 1, 1, 1, 1, 6, 6, 6, 15, 15, 15, 20, 20, 20, 15, 15, 15, 6, 6, 6, 1, 1, 1, 1, 1, 1, 7, 7, 7, 21, 21, 21, 35, 35
Offset: 0

Views

Author

Philippe Deléham, Dec 14 2008

Keywords

Comments

Diagonal sums : A078467 .

Examples

			Triangle begins : 1,1,1 ; 1,1,1,1,1,1 ; 1,1,1,2,2,2,1,1,1 ; 1,1,1,3,3,3,3,3,3,1,1,1, ; 1,1,1,4,4,4,6,6,6,4,4,4,1,1,1 ; 1,1,1,5,5,5,10,10,10,10,10,10,5,5,5,1,1,1 ; ...
		

Crossrefs

Formula

Sum_{k, 0<=k<=2n}T(n,k)=3*2^(n).
Showing 1-2 of 2 results.