Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
A064587
a(n) = n^6*(n^4 + n^2 + 1)*(n^3 - 1)*(n - 1).
4
0, 0, 9408, 3449628, 211341312, 5045250000, 66856881600, 591709998348, 3901724295168, 20560831566912, 90818091000000, 347842282071900, 1184469255180288, 3654470309235408, 10367425399461312, 27360256600687500, 67802350642790400
OFFSET
0,3
REFERENCES
R. W. Carter, Simple Groups of Lie Type, Wiley 1972, Chap. 14.
J. H. Conway, R. T. Curtis, S. P. Norton, R. A. Parker and R. A. Wilson, ATLAS of Finite Groups. Oxford Univ. Press, 1985 [for best online version see https://oeis.org/wiki/Welcome#Links_to_Other_Sites], p. xvi.
LINKS
Index entries for linear recurrences with constant coefficients, signature (15,-105,455,-1365,3003,-5005,6435,-6435,5005,-3003,1365,-455,105,-15,1).
MATHEMATICA
Table[n^6(n^4+n^2+1)(n^3-1)(n-1), {n, 0, 20}] (* Harvey P. Dale, Oct 19 2018 *)
PROG
(PARI) { for (n=0, 400, a=n^6*(n^4 + n^2 + 1)*(n^3 - 1)*(n - 1); write("b064587.txt", n, " ", a) ) } \\ Harry J. Smith, Sep 19 2009
(Python)
def A064587(n): return n**6*(n*(n*(n*(n*(n*(n*(n*(n-1)+1)-2)+2)-2)+1)-1)+1) # Chai Wah Wu, Aug 20 2024
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Oct 17 2001
STATUS
approved