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.

A245560 Row sums of triangle in A144480.

Original entry on oeis.org

1, 2, 6, 14, 36, 82, 196, 436, 1000, 2186, 4884, 10540, 23128, 49428, 107048, 227048, 486864, 1026394, 2183860, 4581244, 9686776, 20237372, 42571896, 88632664, 185653936, 385380932, 804316296, 1665340856, 3464899440, 7158117736, 14853106384
Offset: 0

Views

Author

Roger L. Bagula, Oct 11 2008

Keywords

Crossrefs

Cf. A144480.

Programs

  • Maple
    f:=n->if (n mod 2) = 0 then (n+2)*2^(n-1)-(n/2)*binomial(n,n/2)
    else (n+2)*2^(n-1)-((n+1)/4)*binomial(n+1,(n+1)/2); fi;
    [seq(f(n),n=0..40)];

Formula

From N. J. A. Sloane, Aug 07 2014: if n is even, a(n) = (n+2)*2^(n-1)-(n/2)*binomial(n,n/2) otherwise a(n) = (n+2)*2^(n-1)-((n+1)/4)*binomial(n+1,(n+1)/2). This follows easily from the definition.

Extensions

Edited with more terms by N. J. A. Sloane, Aug 07 2014