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!)
A241168 Triangle read by rows: T(n,k) (1 <= k <= n) = Steffensen's bracket function [n,n-k]. 5
1, 1, 2, 1, 5, 6, 1, 9, 25, 26, 1, 14, 67, 149, 150, 1, 20, 145, 525, 1081, 1082, 1, 27, 275, 1450, 4651, 9365, 9366, 1, 35, 476, 3430, 15421, 47229, 94585, 94586, 1, 44, 770, 7266, 43281, 180894, 545707, 1091669, 1091670, 1, 54, 1182, 14154, 107751, 581280, 2359225, 7087005, 14174521, 14174522 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
Steffensen's bracket function [n,k] = Sum_{s=k..n-1} Stirling2(n,s+1)*s!/k!.
The numbers are used in numerical integration.
REFERENCES
J. F. Steffensen, On a class of polynomials and their application to actuarial problems, Skandinavisk Aktuarietidskrift, 11 (1928), 75-97.
LINKS
J. F. Steffensen, On a class of polynomials and their application to actuarial problems, Skandinavisk Aktuarietidskrift, Vol. 11, pp. 75-97, 1928.
EXAMPLE
Triangle begins:
1,
1, 2,
1, 5, 6,
1, 9, 25, 26,
1, 14, 67, 149, 150,
1, 20, 145, 525, 1081, 1082,
1, 27, 275, 1450, 4651, 9365, 9366,
1, 35, 476, 3430, 15421, 47229, 94585, 94586,
1, 44, 770, 7266, 43281, 180894, 545707, 1091669, 1091670,
...
MAPLE
with(combinat);
T:=proc(n, k) add(stirling2(n, s+1)*s!/k!, s=k..n-1); end;
for n from 1 to 12 do lprint([seq(T(n, n-k), k=1..n)]); od:
CROSSREFS
Diagonals include A000096, A000629, A002050, A002051, A241169, A241170.
Sequence in context: A335136 A193722 A193635 * A145324 A260613 A179457
KEYWORD
nonn,tabl
AUTHOR
N. J. A. Sloane, Apr 22 2014
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 May 13 11:43 EDT 2024. Contains 372504 sequences. (Running on oeis4.)