OFFSET
0,2
COMMENTS
Numer of ordered 3-arcs in the projective plane of order 3.
LINKS
Kaplan, Nathan; Kimport, Susie; Lawrence, Rachel; Peilen, Luke; Weinreich, Max Counting arcs in projective planes via Glynn’s algorithm, J. Geom. 108, No. 3, 1013-1029 (2017), Th. 1.4 C_3.
Index entries for linear recurrences with constant coefficients, signature (7,-21,35,-35,21,-7,1).
FORMULA
MATHEMATICA
Table[(n^2+n+1)(n^2+n)n^2, {n, 0, 30}] (* or *) LinearRecurrence[{7, -21, 35, -35, 21, -7, 1}, {0, 6, 168, 1404, 6720, 23250, 65016}, 30] (* Harvey P. Dale, Dec 25 2023 *)
PROG
(Python)
def A356768(n): return n**3*(n*(n*(n + 2) + 2) + 1) # Chai Wah Wu, Aug 29 2022
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
R. J. Mathar, Aug 29 2022
STATUS
approved