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.

Showing 1-2 of 2 results.

A253096 Moments of 5-step random walk in 4 dimensions.

Original entry on oeis.org

1, 5, 35, 305, 3105, 35505, 444225, 5970725, 85068365, 1272022745, 19810304695, 319422093325, 5307057746125, 90508769121165, 1579462112057595, 28130401719357645, 510199561574590125, 9405815167297415025, 175977472926360962295, 3336795660732459377085, 64047222901288457886285
Offset: 0

Views

Author

N. J. A. Sloane, Feb 16 2015

Keywords

Crossrefs

Cf. A253095 (4-step), A253097 (6-step).

Programs

  • Maple
    W := proc(n,nu,twok)
        option remember;
        local k;
        k := twok/2 ;
        if n = 2 and nu = 1 then
            binomial(2*k+2,k+1)/(k+2) ;
        else
            add( procname(n-1,nu,2*j)*binomial(k,j)*(k+nu)!*nu!/(k-j+nu)!/(j+nu)!,j=0..k) ;
            simplify(%,GAMMA) ;
        end if;
    end proc:
    A253096 := proc(n)
        W(5,1,n) ;
    end proc:
    seq(A253096(2*n),n=0..25) ; # R. J. Mathar, Jun 14 2015

Extensions

a(20) corrected by Georg Fischer, May 30 2022

A253097 Moments of 6-step random walk in 4 dimensions.

Original entry on oeis.org

1, 6, 51, 546, 6906, 99156, 1573011, 27045906, 496875786, 9648849516, 196398517266, 4162468827996, 91368155193516, 2068136816127336, 48099850263089271, 1146002911372510146, 27900188933013974226, 692586162911883821196, 17497841261192358474126, 449207277104544688505556
Offset: 0

Views

Author

N. J. A. Sloane, Feb 16 2015

Keywords

Crossrefs

Cf. A253095 (4-step), A253096 (5-step).
Showing 1-2 of 2 results.