OFFSET
0,2
COMMENTS
Hankel transform of A098333. The Hankel transform of e.g.f. Bessel_I(0,2*sqrt(-3)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).
Let T_n denote the n X n matrix with T_n(i,j) = 3^min(i,j); then a(n) = ((-1)^floor((n+1)/2))*det(T_(n+1))/3. - Lechoslaw Ratajczak, May 16 2021
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..63
FORMULA
a(n) = (cos(Pi*n/2) - sin(Pi*n/2))*6^n*3^C(n,2) = 2^n*(-3)^C(n+1,2).
MATHEMATICA
A127946[0] = 1; A127946[n_] := {1, -1, -1, 1}[[Mod[n, 4] + 1]] * 2^n * 3^(n(n + 1)/2); Table[A127946[n], {n, 0, 12}] (* Jean-François Alcover, Oct 04 2016 *)
Table[2^n*(-3)^Binomial[n+1, 2], {n, 0, 30}] (* G. C. Greubel, May 03 2018 *)
PROG
(PARI) a(n)=if((n-1)%4<2, -1, 1)*2^n*3^(n*(n+1)/2) \\ Charles R Greathouse IV, Oct 04 2016
(Magma) [2^n*(-3)^Binomial(n+1, 2): n in [0..30]]; // G. C. Greubel, May 03 2018
CROSSREFS
KEYWORD
easy,sign
AUTHOR
Paul Barry, Feb 08 2007
STATUS
approved