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.

A090407 a(n) = Sum_{k = 0..n} C(4*n + 1, 4*k).

Original entry on oeis.org

1, 6, 136, 2016, 32896, 523776, 8390656, 134209536, 2147516416, 34359607296, 549756338176, 8796090925056, 140737496743936, 2251799780130816, 36028797153181696, 576460751766552576, 9223372039002259456
Offset: 0

Views

Author

Paul Barry, Nov 29 2003

Keywords

Crossrefs

Programs

  • Mathematica
    Table[Sum[Binomial[4n+1,4k],{k,0,n}],{n,0,30}] (* or *) LinearRecurrence[ {12,64},{1,6},30] (* Harvey P. Dale, Jan 19 2012 *)

Formula

From Harvey P. Dale, Jan 19 2012: (Start)
a(0) = 1, a(1) = 6, a(n) = 12*a(n-1)+64*a(n-2).
G.f.: (6*x-1)/(64*x^2+12*x-1). (End)
a(n) = (1/2) * 4^n * (4^n + (-1)^n). - Peter Bala, Feb 06 2019