The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A039758 Triangle of B-analogs of Stirling numbers of first kind. 5

%I #35 Dec 29 2023 11:36:59

%S 1,1,-1,1,-4,3,1,-9,23,-15,1,-16,86,-176,105,1,-25,230,-950,1689,-945,

%T 1,-36,505,-3480,12139,-19524,10395,1,-49,973,-10045,57379,-177331,

%U 264207,-135135,1,-64,1708,-24640,208054,-1038016,2924172,-4098240,2027025,1,-81,2796,-53676,626934,-4574934,20570444,-53809164,71697105,-34459425

%N Triangle of B-analogs of Stirling numbers of first kind.

%C Triangle T(n,k), read by rows, given by [1, 0, 1, 0, 1, 0, 1, 0, 1, ...] DELTA [ -1, -2, -3, -4, -5, -6, -7, -8, ...], where DELTA is the operator defined in A084938. - _Philippe Deléham_, Aug 08 2005

%H Michael De Vlieger, <a href="/A039758/b039758.txt">Table of n, a(n) for n = 0..11475</a> (rows n = 0..150, flattened)

%H Alnour Altoum, Hasan Arslan, and Mariam Zaarour, <a href="https://arxiv.org/abs/2312.14652">Cauchy numbers in type B</a>, arXiv:2312.14652 [math.CO], 2023.

%H Ruedi Suter, <a href="http://www.cs.uwaterloo.ca/journals/JIS/VOL3/SUTER/sut1.html">Two analogues of a classical sequence</a>, J. Integer Sequences, Vol. 3 (2000), #P00.1.8.

%F T(n,k) = A039757(n,n-k). - _Petros Hadjicostas_, Jul 12 2020

%e Triangle T(n,k) (with rows n >= 0 and columns k = 0..n) begins:

%e 1;

%e 1, -1;

%e 1, -4, 3;

%e 1, -9, 23, -15;

%e 1, -16, 86, -176, 105;

%e 1, -25, 230, -950, 1689, -945;

%e 1, -36, 505, -3480, 12139, -19524, 10395;

%e ... [Edited by _Petros Hadjicostas_, Jul 12 2020]

%t a[n_, m_] := a[n, m] = a[n - 1, m - 1] - (2*n - 1)*a[n - 1, m]; a[n_, 0] := (-1)^n*(2*n - 1)!!; a[n_, n_] = 1; Table[a[n, m], {n, 0, 9}, {m, n, 0, -1}]] // Flatten (* _Michael De Vlieger_, Dec 29 2023, after _Jean-François Alcover_ at A039757 *)

%o (PARI) row(n)=Vec(prod(i=1, n, 'x-2*i+1)) \\ _Petros Hadjicostas_, Jul 12 2020

%Y Cf. A039757.

%K tabl,sign

%O 0,5

%A Ruedi Suter (suter(AT)math.ethz.ch)

%E More terms from _Petros Hadjicostas_, Jul 12 2020

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified June 3 05:44 EDT 2024. Contains 373054 sequences. (Running on oeis4.)