OFFSET
0,2
COMMENTS
The integral gives the moment of inertia of a sphere of radius n.
LINKS
Andrew Howroyd, Table of n, a(n) for n = 0..1000
Mathematics Stack Exchange, Moment of inertia of a sphere, 2017.
R. Nave, Moment of inertia: Sphere, HyperPhysics.
Index entries for linear recurrences with constant coefficients, signature (0,0,0,0,0,0,0,0,0,0,0,0,0,0,1).
FORMULA
a(n) = denominator(8*n^5/15).
a(n) = 15/gcd(15,n). - Chai Wah Wu, Sep 08 2025
G.f.: (1 + 15*x + 15*x^2 + 5*x^3 + 15*x^4 + 3*x^5 + 5*x^6 + 15*x^7 + 15*x^8 + 5*x^9 + 3*x^10 + 15*x^11 + 5*x^12 + 15*x^13 + 15*x^14)/(1 - x^15). - Andrew Howroyd, Nov 06 2025
MATHEMATICA
a[n_]:=Denominator[8n^5/15]; Array[a, 80, 0]
PROG
(Python)
def A387612(n): return ((bool(n%3)<<1)+1)*((bool(n%5)<<2)+1) # Chai Wah Wu, Sep 08 2025
CROSSREFS
KEYWORD
nonn,easy,frac
AUTHOR
Stefano Spezia, Sep 03 2025
STATUS
approved
