A062109 Expansion of ((1-x)/(1-2*x))^4.
1, 4, 14, 44, 129, 360, 968, 2528, 6448, 16128, 39680, 96256, 230656, 546816, 1284096, 2990080, 6909952, 15859712, 36175872, 82051072, 185139200, 415760384, 929562624, 2069889024, 4591714304, 10150215680, 22364028928, 49123688448, 107592286208, 235015241728, 512040632320
Offset: 0
Links
- Harry J. Smith, Table of n, a(n) for n = 0..200
- Robert Davis and Greg Simay, Further Combinatorics and Applications of Two-Toned Tilings, arXiv:2001.11089 [math.CO], 2020.
- Nickolas Hein and Jia Huang, Variations of the Catalan numbers from some nonassociative binary operations, arXiv:1807.04623 [math.CO], 2018.
- Milan Janjic, Two Enumerative Functions
- Milan Janjic and B. Petkovic, A Counting Function, arXiv preprint arXiv:1301.4550 [math.CO], 2013. - From _N. J. A. Sloane_, Feb 13 2013
- Milan Janjic and B. Petkovic, A Counting Function Generalizing Binomial Coefficients and Some Other Classes of Integers, J. Int. Seq. 17 (2014) # 14.3.5.
- Index entries for linear recurrences with constant coefficients, signature (8,-24,32,-16).
Programs
-
Magma
m:=30; R
:=PowerSeriesRing(Integers(), m); Coefficients(R!(((1-x)/(1-2*x))^4)); // G. C. Greubel, Oct 16 2018 -
Maple
seq(coeff(series(((1-x)/(1-2*x))^4, x,n+1),x,n),n=0..30); # Muniru A Asiru, Jul 01 2018
-
Mathematica
CoefficientList[Series[(1 - x)^4/(1 - 2 x)^4, {x, 0, 26}], x] (* Michael De Vlieger, Jul 01 2018 *) LinearRecurrence[{8,-24,32,-16},{1,4,14,44,129},30] (* Harvey P. Dale, Sep 02 2022 *)
-
PARI
a(n)=if(n<1,n==0,(n+5)*(n^2+13*n+18)*2^n/96)
Comments