OFFSET
2,3
COMMENTS
Kurtosis measures the concentration of data around the peak and in the tails versus the concentration in the flanks and is defined to be the fourth central moment divided by the square of the variance.
LINKS
Hans Havermann, Table of n, a(n) for n = 2..10000
MATHEMATICA
Table[Round[Kurtosis[Divisors[n]]], {n, 2, 150}]
PROG
(PARI) a(n)=local(s0, s1, s2, s3, s4); s0=numdiv(n); s1=sigma(n); s2=sigma(n, 2); s3=sigma(n, 3); s4=sigma(n, 4); if(n<2, 0, round(-3+s0^2*(s4*s0-4*s3*s1+3*s2^2)/(s0*s2 -s1^2)^2))
CROSSREFS
KEYWORD
nonn
AUTHOR
Joseph L. Pe, Nov 12 2002
STATUS
approved