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.

A052392 T(2n+1,n), array T as in A054120.

Original entry on oeis.org

1, 6, 39, 261, 1779, 12288, 85734, 602871, 4265859, 30338604, 216677490, 1552999242, 11164548078, 80471658192, 581340627372, 4208086875915, 30514467991011, 221620953353844, 1611867544369146, 11738194502675910, 85580528620970874, 624605115244327776, 4563036506245946964
Offset: 0

Views

Author

Keywords

Programs

  • Maple
    T:= proc(n,k) option remember;
      if k=0 or k=n then return 1 fi;
      if k > n then return 0 fi;
      procname(n-1,k-1) + 2*procname(n-2,k-1) + procname(n-1,k)
    end proc;
    T(2,1):= 3:
    seq(T(2*n+1,n),n=0..30); # Robert Israel, Nov 26 2018

Formula

From Robert Israel, Nov 26 2018: (Start)
Empirical g.f.: (2*x^2-3*x+1)/(2*sqrt(4*x^2-8*x+1)*x)+(x-1)/(2*x).
Empirical recurrence: 8*n*a(n)+(-32-28*n)*a(1+n)+(78+30*n)*a(n+2)+(-45-11*n)*a(n+3)+(5+n)*a(n+4)=0. (End)

A054122 T(2n,n), array T as in A054120.

Original entry on oeis.org

1, 3, 18, 114, 750, 5058, 34692, 240852, 1687446, 11906610, 84490428, 602335836, 4310670156, 30950436468, 222844189320, 1608369633384, 11632913018598, 84294762019218, 611831430746124, 4447397950230540
Offset: 0

Views

Author

Keywords

Crossrefs

Cf. A069835.

Programs

  • Mathematica
    Table[SeriesCoefficient[(1-x)/Sqrt[1-8*x+4*x^2],{x,0,n}],{n,0,20}] (* Vaclav Kotesovec, Oct 09 2012 *)
  • PARI
    a(n)=(2*pollegendre(n,2) - pollegendre(n-1,2))<<(n-1) \\ Charles R Greathouse IV, Mar 18 2017

Formula

a(n) = A069835(n) - A069835(n-1).
G.f.: (1-x)/sqrt(1-8*x+4*x^2). - Vladeta Jovovic, May 13 2003
D-finite with recurrence: (n-1)*n*a(n) = 4*(n-1)*(2*n-1)*a(n-1) - 4*(n-2)*n*a(n-2). - Vaclav Kotesovec, Oct 09 2012
a(n) ~ sqrt(6+4*sqrt(3))*(4+2*sqrt(3))^n/(4*sqrt(Pi*n)). - Vaclav Kotesovec, Oct 09 2012
D-finite with recurrence n*a(n) +3*(-3*n+2)*a(n-1) +12*(n-2)*a(n-2) +4*(-n+3)*a(n-3)=0. - R. J. Mathar, Jun 13 2013

A054121 T(n,n-3), array T as in A054120.

Original entry on oeis.org

1, 9, 39, 114, 261, 507, 879, 1404, 2109, 3021, 4167, 5574, 7269, 9279, 11631, 14352, 17469, 21009, 24999, 29466, 34437, 39939, 45999, 52644, 59901, 67797, 76359, 85614, 95589, 106311, 117807, 130104, 143229, 157209
Offset: 3

Views

Author

Keywords

Programs

Formula

For n>3, a(n) = 3/2 * (3n^3-30n^2+107n-134).
Showing 1-3 of 3 results.