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!)
A171246 Triangle read by rows: T(n,k) = 1 + floor(n!/2^((k - n/2)^2 + 1)). 2
1, 1, 1, 1, 2, 1, 1, 3, 3, 1, 1, 7, 13, 7, 1, 1, 13, 51, 51, 13, 1, 1, 23, 181, 361, 181, 23, 1, 1, 34, 530, 2120, 2120, 530, 34, 1, 1, 40, 1261, 10081, 20161, 10081, 1261, 40, 1, 1, 38, 2384, 38144, 152573, 152573, 38144, 2384, 38, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
Philippe Flajolet and Robert Sedgewick, Analytic Combinatorics, Cambridge Univ. Press, 2009, page 695.
FORMULA
T(n,k) = 1 + floor(n!/2^((k - n/2)^2 +1)).
EXAMPLE
Triangle begins as:
1;
1, 1;
1, 2, 1;
1, 3, 3, 1;
1, 7, 13, 7, 1;
1, 13, 51, 51, 13, 1;
1, 23, 181, 361, 181, 23, 1;
1, 34, 530, 2120, 2120, 530, 34, 1;
MATHEMATICA
T[n_, k_]:= 1 +Floor[n!*2^(-(k-n/2)^2 -1)]; Table[T[n, k], {n, 0, 10}, {k, 0, n}]//Flatten
PROG
(PARI) {T(n, k) = 1 + floor(n!/2^((k - n/2)^2 +1))}; \\ G. C. Greubel, Apr 11 2019
(Magma) [[1 +Floor(Factorial(n)/2^((k - n/2)^2 +1)): k in [0..n]]: n in [0..10]]; // G. C. Greubel, Apr 11 2019
(Sage) [[1 + floor(factorial(n)/2^((k-n/2)^2 +1)) for k in (0..n)] for n in (0..10)] # G. C. Greubel, Apr 11 2019
CROSSREFS
Cf. A171229.
Sequence in context: A225910 A215292 A124975 * A129439 A176469 A141542
KEYWORD
nonn,tabl
AUTHOR
Roger L. Bagula, Dec 06 2009
EXTENSIONS
Edited by G. C. Greubel, Apr 11 2019
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 August 28 09:32 EDT 2024. Contains 375477 sequences. (Running on oeis4.)