OFFSET
0,1
COMMENTS
Number of monic irreducible polynomials of degree 1 in GF(2^n)[x,y,z]. - Max Alekseyev, Jan 23 2006
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..200
Index entries for linear recurrences with constant coefficients, signature (14,-56,64).
FORMULA
G.f.: 1/(1-2*x)+1/(1-4*x)+1/(1-8*x). E.g.f.: exp(2*x)+exp(4*x)+exp(8*x). [Mohammad K. Azarian, Dec 26 2008]
Let A=[1, 1, 1;2, 0, -2;1, -1, 1], the 3 X 3 Krawtchouk matrix. Then a(n)=trace((A*A')^n). - Paul Barry, Sep 18 2004
MATHEMATICA
Table[2^n + 4^n + 8^n, {n, 0, 20}]
PROG
(Magma) [2^n + 4^n + 8^n: n in [0..25]]; // Vincenzo Librandi, Jun 11 2011
(Python)
def a(n): return 2**n + 4**n + 8**n
print([a(n) for n in range(20)]) # Michael S. Branicky, Mar 14 2021
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Robert G. Wilson v, Aug 23 2002
STATUS
approved