A203012 Vandermonde sequence using x^2 + xy + y^2 applied to (1,2,...,n).
1, 7, 1729, 37616124, 135933424914924, 132432199651531695045312, 51437933151214684812682944045953088, 11056394929890243558409721156996503083526683082752, 1743892714865607005898689849291524734866677095031979100765833773056
Offset: 1
Keywords
Examples
a(1)=1 a(2)=1^2+1*2+2^2=7 a(3)=(1^2+1*2+2^2)(1^3+1*3+3^2)(2^2+2*3+3^2)=1729.
Programs
Formula
a(n) ~ c * n^(n^2 - n - 5/6) * 3^(n*(3*n+1)/4) / exp(3*n^2/2 - n - n*(n+1)*Pi / (4*sqrt(3))), where c = sqrt(Gamma(1/3)) * 3^(5/24) * exp(Pi/(24*sqrt(3))) / (2^(7/6) * Pi^(7/6)) = 0.26001211479205772659823692637002123572622409280442625312217301129630097... - Vaclav Kotesovec, Nov 22 2023
Comments