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.

A026846 a(n) = T(2n+1,n+4), T given by A026725.

Original entry on oeis.org

1, 9, 56, 300, 1487, 7041, 32381, 146017, 649395, 2859231, 12494914, 54291912, 234860677, 1012433965, 4352210327, 18666918033, 79916230409, 341615895659, 1458457275715, 6220016154525, 26503542364381, 112847001503099, 480173686483581
Offset: 3

Views

Author

Keywords

Comments

This is probably the same as A026842 because A026725 is built in a left-right symmetric Pascal-tree-summation fashion. - R. J. Mathar, May 28 2008
Column k=8 of triangle A236830. - Philippe Deléham, Feb 02 2014

Crossrefs

Programs

  • Magma
    R:=PowerSeriesRing(Rationals(), 30); Coefficients(R!( (1-Sqrt(1-4*x))^8/(32*x^3*(8*x^2 -(1-Sqrt(1-4*x))^3 )) )); // G. C. Greubel, Jul 17 2019
    
  • Mathematica
    Drop[CoefficientList[Series[(1-Sqrt[1-4*x])^8/(32*x^3*(8*x^2 -(1 - Sqrt[1-4*x])^3 )), {x,0,30}], x], 3] (* G. C. Greubel, Jul 17 2019 *)
  • PARI
    my(x='x+O('x^30)); Vec((1-sqrt(1-4*x))^8/(32*x^3*(8*x^2 -(1 - sqrt(1-4*x))^3 ))) \\ G. C. Greubel, Jul 17 2019
    
  • Sage
    a=((1-sqrt(1-4*x))^8/(32*x^3*(8*x^2 -(1-sqrt(1-4*x))^3 ))).series(x, 30).coefficients(x, sparse=False); a[3:] # G. C. Greubel, Jul 17 2019

Formula

a(n) = A026842(n) = A026849(n). - Philippe Deléham, Feb 02 2014
G.f.: (x^3*C(x)^8)/(1-x*C(x)^3) where C(x) is the g.f. of A000108. - Philippe Deléham, Feb 02 2014