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.

A127947 Hankel transform of central coefficients of (1+k*x+5x^2)^n, k arbitrary integer.

Original entry on oeis.org

1, 10, 500, 125000, 156250000, 976562500000, 30517578125000000, 4768371582031250000000, 3725290298461914062500000000, 14551915228366851806640625000000000
Offset: 0

Views

Author

Paul Barry, Feb 08 2007

Keywords

Comments

Hankel transform of A098264. The Hankel transform of e.g.f. Bessel_I(0,2*sqrt(5)x) and its k-th binomial transforms, are given by a(n). In general, the Hankel transform of e.g.f. Bessel_I(0,2*sqrt(m)x) and its binomial transforms is 2^n*m^C(n+1,2).

Programs

  • Magma
    [2^n*5^Binomial(n+1,2): n in [0..30]]; // G. C. Greubel, May 03 2018
  • Mathematica
    Table[2^n*5^Binomial[n+1,2], {n,0,30}] (* G. C. Greubel, May 03 2018 *)
  • PARI
    for(n=0, 30, print1(2^n*5^binomial(n+1,2), ", ")) \\ G. C. Greubel, May 03 2018
    

Formula

a(n) = 2^n*5^C(n+1,2).