OFFSET
0,2
COMMENTS
REFERENCES
Louis Comtet, Advanced Combinatorics, Reidel, 1974, p. 199, #3.
LINKS
Harry J. Smith, Table of n, a(n) for n = 0..100
Index entries for linear recurrences with constant coefficients, signature (12,-32).
FORMULA
Equals J_n(8) (see A059379).
a(n) = 4*A016152(n).
G.f.: 4*x/((8*x-1)*(4*x-1)). - R. J. Mathar, Nov 23 2018
Sum_{n>0} 1/a(n) = E - 4/3, where E is the Erdős-Borwein constant (A065442). - Peter McNair, Dec 19 2022
From Elmo R. Oliveira, Nov 20 2025: (Start)
E.g.f.: 2*exp(6*x)*sinh(2*x).
a(n) = 2*A147538(n).
a(n) = 12*a(n-1) - 32*a(n-2). (End)
EXAMPLE
(4,48,448,3840,...) = (8,64,512,4096,...) - (2,12,56,240,...) - (1,3,7,15,...) - (1,1,1,1,...)
MAPLE
seq(4^n * (2^n - 1), n=0..20); # Muniru A Asiru, Jan 29 2018
MATHEMATICA
Table[4^n*(2^n - 1), {n, 0, 30}] (* G. C. Greubel, Jan 29 2018 *)
LinearRecurrence[{12, -32}, {0, 4}, 20] (* Harvey P. Dale, Oct 14 2019 *)
PROG
(PARI) a(n) = { 4^n*(2^n - 1) } \\ Harry J. Smith, Jun 26 2009
(Magma) [4^n*(2^n - 1): n in [0..40]]; // Vincenzo Librandi, Apr 26 2011
(GAP) List([0..100], n->4^n * (2^n - 1)); # Muniru A Asiru, Jan 29 2018
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Alford Arnold, Jan 30 2001
STATUS
approved
