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.

A261791 The integer part of the surface area of the 4-dimensional sphere of radius n.

Original entry on oeis.org

19, 157, 532, 1263, 2467, 4263, 6770, 10106, 14389, 19739, 26272, 34109, 43367, 54164, 66619, 80851, 96978, 115119, 135391, 157913, 182804, 210183, 240166, 272874, 308425, 346936, 388526, 433315, 481419, 532958
Offset: 1

Views

Author

Ilya Gutkovskiy, Sep 01 2015

Keywords

Comments

2*Pi^2*n^3 - surface area of the 4-dimensional sphere of radius n.

Crossrefs

Programs

  • Mathematica
    Table[Floor[2 Pi^2 n^3], {n, 1, 30}]
  • PARI
    a(n) = floor(2*Pi^2*n^3) \\ Charles R Greathouse IV, Sep 18 2015

Formula

a(n) = floor(2*Pi^2*n^3).
a(n) = floor(2*Pi^2*A000578(n)).