OFFSET
1,2
REFERENCES
William Fulton, Intersection Theory 2nd edition, Springer-Verlag, 1998, page 192.
LINKS
Paolo Xausa, Table of n, a(n) for n = 1..10000
David Eisenbud and Brady Haran, The Journey to 3264, Numberphile video (2023).
Wikipedia, Steiner's conic problem.
Wikipedia, Enumerative geometry.
Index entries for linear recurrences with constant coefficients, signature (11,-55,165,-330,462,-462,330,-165,55,-11,1).
FORMULA
a(n) = n^5 * ((n-1)^5 + 10*(n-1)^4 + 40*(n-1)^3 + 40*(n-1)^2 + 10*(n-1) + 1).
From Elmo R. Oliveira, Jun 02 2026: (Start)
G.f.: x*(1 + 3253*x + 132550*x^2 + 911542*x^3 + 1621504*x^4 + 785704*x^5 + 127402*x^6 + 41530*x^7 + 5263*x^8 + 51*x^9) / (1 - x)^11.
E.g.f.: exp(x)*x*(1 + 1631*x + 26435*x^2 + 80440*x^3 + 83805*x^4 + 38102*x^5 + 8440*x^6 + 940*x^7 + 50*x^8 + x^9).
a(n) = 11*a(n-1) - 55*a(n-2) + 165*a(n-3) - 330*a(n-4) + 462*a(n-5) - 462*a(n-6) + 330*a(n-7) - 165*a(n-8) + 55*a(n-9) - 11*a(n-10) + a(n-11). (End)
EXAMPLE
a(2)=3264 because there are 3264 conics tangent to five conics in general position (Steiner's conic problem).
MATHEMATICA
A328148[n_] := n^6*(n*(n*(n*(n + 5) + 10) - 30) + 15);
Array[A328148, 25] (* Paolo Xausa, Jul 06 2026 *)
CROSSREFS
KEYWORD
nonn,easy,changed
AUTHOR
Niccolò Castronuovo, Jun 07 2020
EXTENSIONS
More terms from Paolo Xausa, Jul 06 2026
STATUS
approved
