login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


A356768
a(n) = (n^2+n+1)*(n^2+n)*n^2.
1
0, 6, 168, 1404, 6720, 23250, 65016, 156408, 336384, 663390, 1221000, 2124276, 3526848, 5628714, 8684760, 13014000, 19009536, 27149238, 38007144, 52265580, 70728000, 94332546, 124166328, 161480424, 207705600, 264468750, 333610056, 417200868, 517562304
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.
FORMULA
a(n) = n^2*A169938(n).
G.f.: -6*x*(1+21*x+59*x^2+35*x^3+4*x^4)/(x-1)^7.
6 | a(n).
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
Cf. A169938 (2-arcs).
Sequence in context: A143534 A104729 A106661 * A322708 A181013 A003720
KEYWORD
nonn,easy
AUTHOR
R. J. Mathar, Aug 29 2022
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified September 20 18:47 EDT 2024. Contains 376075 sequences. (Running on oeis4.)