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!)
A144402 Triangle in A144385 read downwards by columns. 3

%I #23 Mar 28 2020 06:37:13

%S 1,0,1,0,1,1,0,1,3,1,0,0,7,6,1,0,0,10,25,10,1,0,0,10,75,65,15,1,0,0,0,

%T 175,315,140,21,1,0,0,0,280,1225,980,266,28,1,0,0,0,280,3780,5565,

%U 2520,462,36,1,0,0,0,0,9100,26145,19425,5670,750,45,1,0,0,0,0,15400

%N Triangle in A144385 read downwards by columns.

%C The Bell transform of the sequence "g(n) = 1 if n<3 else 0". For the definition of the Bell transform see A264428. - _Peter Luschny_, Jan 19 2016

%H Moa Apagodu, David Applegate, N. J. A. Sloane, and Doron Zeilberger, <a href="http://arxiv.org/abs/1701.08394">Analysis of the Gift Exchange Problem</a>, arXiv:1701.08394 [math.CO], 2017.

%H David Applegate and N. J. A. Sloane, <a href="http://arxiv.org/abs/0907.0513">The Gift Exchange Problem</a>, arXiv:0907.0513 [math.CO], 2009.

%t BellMatrix[f_Function, len_] := With[{t = Array[f, len, 0]}, Table[BellY[n, k, t], {n, 0, len-1}, {k, 0, len-1}]];

%t rows = 12;

%t M = BellMatrix[If[#<3, 1, 0]&, rows];

%t Table[M[[n, k]], {n, 1, rows}, {k, 1, n}] // Flatten (* _Jean-François Alcover_, Jul 14 2018, after _Peter Luschny_ *)

%o (Sage) # uses[bell_matrix from A264428]

%o bell_matrix(lambda n: 1 if n<3 else 0, 12) # _Peter Luschny_, Jan 19 2016

%Y Cf. A111246.

%K nonn,tabl

%O 0,9

%A _David Applegate_ and _N. J. A. Sloane_, Dec 07 2008

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 April 18 12:53 EDT 2024. Contains 371780 sequences. (Running on oeis4.)