OFFSET
0,2
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..1000
Wikipedia, Heawood graph
Index entries for linear recurrences with constant coefficients, signature (11,-18).
FORMULA
MATHEMATICA
CoefficientList[Series[(1 - 8*x)/((9*x - 1)*(2*x - 1)), {x, 0, 50}], x] (* or *) LinearRecurrence[{11, -18}, {1, 3}, 30] (* G. C. Greubel, Dec 30 2017 *)
PROG
(PARI) x='x+O('x^30); Vec((1 - 8*x)/((9*x - 1)*(2*x - 1))) \\ G. C. Greubel, Dec 30 2017
(Magma) I:=[1, 3]; [n le 2 select I[n] else 11*Self(n-1) - 18*Self(n-2): n in [1..30]]; // G. C. Greubel, Dec 30 2017
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Mitch Harris, Jun 30 2005
STATUS
approved