cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A093199 Number of 4 X 4 magic squares with line sum n.

Original entry on oeis.org

1, 8, 48, 200, 675, 1904, 4736, 10608, 21925, 42328, 77328, 134680, 225351, 364000, 570368, 869856, 1295433, 1888296, 2700400, 3795176, 5250795, 7160912, 9638784, 12818000, 16857581, 21942648, 28290640, 36151864
Offset: 0

Views

Author

Ralf Stephan, Apr 22 2004

Keywords

Comments

A magic square is defined here as a square matrix whose entries are nonnegative integers and whose rows, columns and main diagonals add up to the same number.

Programs

  • Mathematica
    a[n_] := (1/960)(n + 2)(2 n^6 + 24 n^5 + 130 n^4 + 400 n^3 + 5 (-1)^n n^2 + 763 n^2 + 20 (-1)^n n + 876 n + 45 (-1)^n + 435);
    Table[a[n], {n, 0, 27}] (* Jean-François Alcover, Jan 18 2019 *)
  • PARI
    a(n)=if(n%2==0,1/480*n^7+7/240*n^6+89/480*n^5+11/16*n^4+49/30*n^3+38/15*n^2+71/30*n+1,1/480*n^7+7/240*n^6+89/480*n^5+11/16*n^4+779/480*n^3+593/240*n^2+1051/480*n+13/16)

Formula

G.f.: (x^8+4x^7+18x^6+36x^5+50x^4+36x^3+18x^2+4x+1)/(1-x)^4/(1-x^2)^4 [Ahmed]. - sent by R. J. Mathar, Jan 25 2007
a(n) = 4*a(n-1) - 2*a(n-2) - 12*a(n-3) + 17*a(n-4) + 8*a(n-5) - 28*a(n-6) + 8*a(n-7) + 17*a(n-8) - 12*a(n-9) - 2*a(n-10) + 4*a(n-11) - a(n-12) for n > 11. - Chai Wah Wu, Jan 15 2019
E.g.f.: ((480 + 3450*x + 7710*x^2 + 6545*x^3 + 2480*x^4 + 439*x^5 + 35*x^6 + x^7)*cosh(x) + (390 + 3570*x + 7665*x^2 + 6550*x^3 + 2480*x^4 + 439*x^5 + 35*x^6 + x^7)*sinh(x))/480. - Stefano Spezia, Mar 12 2025