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.

A100139 a(n) = Sum_{k=0..floor(n/6)} C(n-3k,3k) * 3^k * 2^(n-6k).

Original entry on oeis.org

1, 2, 4, 8, 16, 32, 67, 152, 376, 992, 2704, 7424, 20233, 54398, 144112, 376736, 974368, 2500544, 6385435, 16264220, 41396788, 105423776, 268818064, 686499008, 1755723793, 4495691834, 11521647916, 29543647160, 75774096832, 194353495424
Offset: 0

Views

Author

Paul Barry, Nov 06 2004

Keywords

Comments

Binomial transform of 1,1,1,1,1,1,4,4,13,13,31,... with g.f. (1-x)^2(1+x)^3/(1-3x^2+3x^4-4x^6)=(1+x)(1-x^2)^2/((1-x^2)^3-3x^6).

Crossrefs

Programs

  • Mathematica
    LinearRecurrence[{6,-12,8,0,0,3},{1,2,4,8,16,32},30] (* Harvey P. Dale, Sep 30 2015 *)

Formula

G.f.: (1-2x)^2/((1-2x)^3 - 3x^6).
a(n) = 6*a(n-1) -12*a(n-2) + 8*a(n-3) + 3*a(n-6).