OFFSET
0,2
COMMENTS
If F(k) is the k-th Fibonacci number, where F(0)=0, F(1)=1, and F(n)=F(n-1)+F(n-2), then p(k)=F(k-1)/2^k is a normalized probability distribution on the positive integers.
For example, it is the probability that k coin tosses are required to get two heads in a row, or the probability that a random series of k bits has its first two consecutive 1's at the end.
The g.f. for this distribution is g(x) = x^2/(4-2x-x^2) = (1/4)x^2 + (1/8)x^3 + (1/8)x^4 + (3/32)x^5 + ....
The n-th moments about zero of this distribution, known as raw moments, are defined by a(n) = Sum_{k>=1} (k^n)p(k). They appear to be integers and form this sequence.
The e.g.f. for the raw moments is g(e^x) = 1 + 6x + 58x^2/2! + 822x^3/3! + ....
For n >= 1, a(n) appears to be even.
Dividing these terms by 2 gives sequence A302923.
The central moments (i.e., the moments about the mean) also appear to be integers. They form sequence A302924.
The central moments also appear to be even for n >= 1. Dividing them by 2 gives sequence A302925.
The cumulants of this distribution, defined by the cumulant e.g.f. log(g(e^x)), also appear to be integers. They form sequence A302926.
The cumulants also appear to be even for n >= 0. Dividing them by 2 gives sequence A302927.
LINKS
Albert Gordon Smith, Table of n, a(n) for n = 0..300
Christopher Genovese, Double Heads
FORMULA
In the following,
F(k) is the k-th Fibonacci number, as defined in the Comments.
phi=(1+sqrt(5))/2 is the golden ratio, and psi=(1-sqrt(5))/2.
Li(s,z) is the polylogarithm of order s and argument z.
When s is a negative integer as it is here, Li(s,z) is a rational function of z: Li(-n,z) = (z(d/dz))^n(z/(1-z)).
For n>=0:
a(n) = Sum_{k>=1} ((k^n)(F(k-1)/2^k));
a(n) = Sum_{k>=1} ((k^n)(((phi^(k-1)-psi^(k-1))/sqrt(5))/2^k));
a(n) = (Li(-n,phi/2)/phi-Li(-n,psi/2)/psi)/sqrt(5).
E.g.f.: g(e^x) where g(x) = x^2/(4-2x-x^2) is the g.f. for the probability distribution.
a(n) ~ n! * (5 - sqrt(5)) / (10 * (log(sqrt(5) - 1))^(n+1)). - Vaclav Kotesovec, Apr 13 2022
EXAMPLE
a(0)=1 is the 0th raw moment of the distribution, which is the total probability.
a(1)=6 is the 1st raw moment, known as the mean of the distribution. It is the arithmetic average of integers following the distribution.
a(2)=58 is the 2nd raw moment. It is the arithmetic average of the squares of integers following the distribution.
MATHEMATICA
Module[{max, r, g},
max = 17;
r = Range[0, max];
g[x_] := x^2/(4 - 2 x - x^2);
r! CoefficientList[Normal[Series[g[Exp[x]], {x, 0, max}]], x]
]
PROG
(PARI) Vec(serlaplace(exp(2*x)/(4-2*exp(x)-exp(2*x)))) \\ Michel Marcus, Apr 17 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
Albert Gordon Smith, Apr 15 2018
STATUS
approved