OFFSET
0,3
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..1000
V. Jovovic, G. Kilibarda, On the number of Boolean functions in the Post classes F^{mu}_8, (in Russian), Diskretnaya Matematika, 11 (1999), no. 4, 127-138.
V. Jovovic, G. Kilibarda, On the number of Boolean functions in the Post classes F^{mu}_8, (English translation), Discrete Mathematics and Applications, 9, (1999), no. 6.
Index entries for linear recurrences with constant coefficients, signature (23,-194,712,-960).
FORMULA
a(n) = 8^n - 3*6^n + 3*5^n - 4^n.
a(0)=0, a(1)=1, a(2)=15, a(3)=175, a(n) = 23*a(n-1) -194*a(n-2) + 712*a(n-3) -960*a(n-4). - Harvey P. Dale, Mar 07 2012
G.f.: x*(24*x^2-8*x+1)/((4*x-1)*(5*x-1)*(6*x-1)*(8*x-1)). - Colin Barker, Nov 05 2012
E.g.f.: exp(8*x) -3*exp(6*x) +3*exp(5*x) -exp(4*x). - G. C. Greubel, Nov 12 2019
MAPLE
MATHEMATICA
Table[8^n-3*6^n+3*5^n-4^n, {n, 0, 20}] (* or *) LinearRecurrence[{23, -194, 712, -960}, {0, 1, 15, 175}, 20] (* Harvey P. Dale, Mar 07 2012 *)
PROG
(PARI) vector(21, n, m=n-1; 8^m -3*6^m +3*5^m -4^m) \\ G. C. Greubel, Oct 06 2017
(Magma) [8^n -3*6^n +3*5^n -4^n: n in [0..20]]; // G. C. Greubel, Nov 12 2019
(Sage) [8^n -3*6^n +3*5^n -4^n for n in (0..20)] # G. C. Greubel, Nov 12 2019
(GAP) List([0..20], n-> 8^n -3*6^n +3*5^n -4^n); # G. C. Greubel, Nov 12 2019
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Vladeta Jovovic, Goran Kilibarda
STATUS
approved