login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A037253
a(n) = n^12*(n^8+n^4+1)*(n^6-1)*(n^2-1).
5
0, 0, 211341312, 20560831566912, 67802350642790400, 35817806390625000000, 5974842736157763686400, 450782974156649555296512, 19045158721552047314829312, 516964372056378442547769600, 9900980198009901000000000000
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 (29, -406, 3654, -23751, 118755, -475020, 1560780, -4292145, 10015005, -20030010, 34597290, -51895935, 67863915, -77558760, 77558760, -67863915, 51895935, -34597290, 20030010, -10015005, 4292145, -1560780, 475020, -118755, 23751, -3654, 406, -29, 1).
MATHEMATICA
Table[n^12(n^8+n^4+1)(n^6-1)(n^2-1), {n, 0, 20}] (* Harvey P. Dale, Sep 15 2011 *)
PROG
(Magma) [n^12*(n^8+n^4+1)*(n^6-1)*(n^2-1) :n in [0..15]]; // Sep 15 2011
(Python)
def A037253(n): return (m:=n**2)**6*(m*(m*(m*(m*(m*(m*(m*(m-1)+1)-2)+2)-2)+1)-1)+1) # Chai Wah Wu, Aug 20 2024
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved