OFFSET
1,2
COMMENTS
Also the arboricity of the n-Keller graph.
LINKS
Eric Weisstein's World of Mathematics, Arboricity.
Eric Weisstein's World of Mathematics, Keller Graph.
Index entries for linear recurrences with constant coefficients, signature (8,-18,4,19,-12).
FORMULA
a(n) = 8*a(n-1)-18*a(n-2)+4*a(n-3)+19*a(n-4)-12*a(n-5).
G.f.: x*(1-5*x+12*x^2-8*x^3-6*x^4)/((-1+x)^2*(1-6*x+5*x^2+12*x^3)).
MATHEMATICA
Table[Floor[(4^n - 3^n - n + 2)/2], {n, 20}]
Table[(3 - (-1)^n + 2^(2 n + 1) - 2 3^n - 2 n)/4, {n, 20}]
LinearRecurrence[{8, -18, 4, 19, -12}, {1, 3, 18, 86, 389}, 20]
CoefficientList[Series[(1 - 5 x + 12 x^2 - 8 x^3 - 6 x^4)/((-1 + x)^2 (1 - 6 x + 5 x^2 + 12 x^3)), {x, 0, 20}], x]
PROG
(Python)
def A390501(n): return (1<<(n<<1)-1)-(3**n+n-1>>1) # Chai Wah Wu, Jan 30 2026
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Eric W. Weisstein, Jan 30 2026
STATUS
approved
