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.

A302925 Central half-moments of a Fibonacci-geometric probability distribution.

This page as a plain text file.
%I A302925 #21 May 26 2018 22:33:18
%S A302925 0,11,105,2213,51165,1453181,47976285,1811069453,76908075405,
%T A302925 3628847679101,188346690807165,10664385332157293,654147624218952045,
%U A302925 43211604394985309021,3058357414665518833245,230889832039240121542733,18520398049681432308011085
%N A302925 Central half-moments of a Fibonacci-geometric probability distribution.
%C A302925 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.
%C A302925 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.
%C A302925 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 + ....
%C A302925 The mean of this distribution is 6. (See A302922.)
%C A302925 The n-th moments about the mean, known as central moments, are defined by a(n) = Sum_{k>=1} ((k-6)^n)p(k). They appear to be integers and form A302924.
%C A302925 For n >= 1, that sequence appears to be even. Dividing those terms by 2 gives this sequence.
%C A302925 The raw moments (i.e., the moments about zero) also appear to be integers. This is sequence A302922.
%C A302925 The raw moments also appear to be even for n >= 1. Dividing them by 2 gives sequence A302923.
%C 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.
%C A302925 The cumulants also appear to be even for n >= 0. Dividing them by 2 gives sequence A302927.
%C A302925 Note: Another probability distribution on the positive integers that has integral moments is the geometric distribution p(k)=1/2^k. The sequences related to these moments are A000629, A000670, A052841, and A091346.
%H A302925 Albert Gordon Smith, <a href="/A302925/b302925.txt">Table of n, a(n) for n = 1..300</a>
%H A302925 Christopher Genovese, <a href="http://www.stat.cmu.edu/~genovese/class/iprob-S06/notes/double-heads.pdf">Double Heads</a>
%F A302925 In the following,
%F A302925 F(k) is the k-th Fibonacci number, as defined in the Comments.
%F A302925 phi=(1+sqrt(5))/2 is the golden ratio, and psi=(1-sqrt(5))/2.
%F A302925 LerchPhi(z,s,a) = Sum_{k>=0} z^k/(a+k)^s is the Lerch transcendant.
%F A302925 For n>=1:
%F A302925 a(n) = (1/2)A302924(n);
%F A302925 a(n) = (1/2)Sum_{k>=1} (((k-6)^n)(F(k-1)/2^k));
%F A302925 a(n) = (1/2)Sum_{k>=1} (((k-6)^n)(((phi^(k-1)-psi^(k-1))/sqrt(5))/2^k));
%F A302925 a(n) = (1/2)(LerchPhi(phi/2,-n,-5)-LerchPhi(psi/2,-n,-5))/(2 sqrt(5));
%F A302925 a(n) = (1/2)Sum_{k=0..n} (binomial(n,k)A302922(k)(-6)^(n-k)).
%e A302925 a(1)=0 is half the 1st central moment of the distribution, or half the "mean about the mean". It is zero by definition of central moments.
%e A302925 a(2)=11 is half the 2nd central moment, or half the variance, or half the square of the standard deviation.
%t A302925 Module[{max, r, g, moments, centralMoments},
%t A302925   max = 17;
%t A302925   r = Range[0, max];
%t A302925   g[x_] := x^2/(4 - 2 x - x^2);
%t A302925   moments = r! CoefficientList[Normal[Series[g[Exp[x]], {x, 0, max}]], x];
%t A302925   centralMoments = Table[Sum[Binomial[n, k] moments[[k + 1]] (-6)^(n - k), {k, 0, n}], {n, 0, max}];
%t A302925   Rest[centralMoments]/2
%t A302925 ]
%Y A302925 Central moments: A302924.
%Y A302925 Raw moments: A302922.
%Y A302925 Raw half-moments: A302923.
%Y A302925 Cumulants: A302926.
%Y A302925 Half-cumulants: A302927.
%Y A302925 Cf. A000629, A000670, A052841, A091346.
%K A302925 nonn
%O A302925 1,2
%A A302925 _Albert Gordon Smith_, Apr 15 2018