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!)
A256548 Triangle read by rows, T(n,k) = |n,k|*h(k), where |n,k| are the Stirling cycle numbers and h(k) = hypergeom([-k+1,-k],[],1), for n>=0 and 0<=k<=n. 1
1, 0, 1, 0, 1, 3, 0, 2, 9, 13, 0, 6, 33, 78, 73, 0, 24, 150, 455, 730, 501, 0, 120, 822, 2925, 6205, 7515, 4051, 0, 720, 5292, 21112, 53655, 87675, 85071, 37633, 0, 5040, 39204, 170716, 494137, 981960, 1304422, 1053724, 394353 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,6
LINKS
FORMULA
T(n,k) = A132393(n,k)*A000262(k).
T(n,n) = A000262(n).
T(n+1,1) = n!.
Row sums are A088815.
Alternating row sums are (-1)^n*A088819(n).
EXAMPLE
Triangle starts:
[1]
[0, 1]
[0, 1, 3]
[0, 2, 9, 13]
[0, 6, 33, 78, 73]
[0, 24, 150, 455, 730, 501]
[0, 120, 822, 2925, 6205, 7515, 4051]
PROG
(Sage)
A000262 = lambda n: simplify(hypergeometric([-n+1, -n], [], 1))
A256548 = lambda n, k: A000262(k)*stirling_number1(n, k)
for n in range(7): [A256548(n, k) for k in (0..n)]
CROSSREFS
Sequence in context: A193084 A126598 A326602 * A239098 A319501 A302224
KEYWORD
nonn,tabl,easy
AUTHOR
Peter Luschny, Apr 12 2015
STATUS
approved

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 25 07:41 EDT 2024. Contains 371964 sequences. (Running on oeis4.)