OFFSET
1,2
LINKS
G. C. Greubel, Table of n, a(n) for n = 1..820
Index entries for linear recurrences with constant coefficients, signature (28,-224,512).
FORMULA
G.f.: x*(1+8*x)/( (1-4*x)*(1-8*x)*(1-16*x) ).
From G. C. Greubel, Oct 02 2024: (Start)
a(n) = ( binomial(2^n, 2) )^2 = 4^(n-1)*(2^n - 1)^2.
E.g.f.: (1/4)*(exp(4*x) - 2*exp(8*x) + exp(16*x)). (End)
MATHEMATICA
Binomial[2^Range[30], 2]^2 (* G. C. Greubel, Oct 02 2024 *)
PROG
(PARI) a(n)=polcoeff(x*(1+8*x)/((1-4*x)*(1-8*x)*(1-16*x)+x*O(x^n)), n)
(Magma) [Binomial(2^n, 2)^2: n in [1..30]]; // G. C. Greubel, Oct 02 2024
(SageMath)
def A110206(n): return binomial(2^n, 2)^2
[A110206(n) for n in range(1, 31)] # G. C. Greubel, Oct 02 2024
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jul 16 2005
STATUS
approved