A210519 a(n) = floor(volume of 4-sphere of radius n).
0, 4, 78, 399, 1263, 3084, 6395, 11848, 20212, 32377, 49348, 72250, 102328, 140942, 189575, 249824, 323407, 412159, 518035, 643108, 789568, 959725, 1156007, 1380959, 1637248, 1927657, 2255086, 2622556, 3033205, 3490291
Offset: 0
Keywords
Links
- Clay Math Institute, Poincaré Conjecture Press Release
- Mathworld, Hypersphere
- Mathworld, Poincaré's Conjecture
- Wikipedia, N-sphere
Programs
-
JavaScript
pi = Math.PI; for (i = 0; i < 60; i++) document.write(Math.floor(pi*pi*i*i*i*i/2) + ", ");
-
Mathematica
Table[Floor[(Pi^2 n^4)/2], {n, 0, 29}]
Formula
a(n) = floor(1/2*Pi^2*n^4).
Comments