Svoboda | Graniru | BBC Russia | Golosameriki | Facebook
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!)
A059510 Main diagonal of the array A059220. 1
1, 1, 8, 152, 4493, 202066, 12841750, 1097043147, 121284672716, 16850062144162, 2873723485196575, 590279507847844136, 143737044733324878879, 40943428029694983816963, 13488163010054730357533318, 5088553275271661089776406989 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
MATHEMATICA
t[0, 0] = 1; t[0, _?EvenQ] = 0; t[_?OddQ, 0] = 0; t[n_, k_] /; OddQ[n + k] (*up*):= t[n, k] = t[n + 1, k - 1] + Sum[t[n, j], {j, 0, k - 1}];
t[n_, k_] /; EvenQ[n + k] (*down*):= t[n, k] = t[n - 1, k + 1] + Sum[t[j, k], {j, 0, n - 1}]; Table[t[n, n], {n, 0, 50}] (* G. C. Greubel, Sep 10 2017 *)
CROSSREFS
Sequence in context: A123770 A003400 A360338 * A264708 A094059 A171202
KEYWORD
easy,nonn
AUTHOR
Floor van Lamoen, Jan 21 2001
EXTENSIONS
Terms a(11) onward added by G. C. Greubel, Sep 10 2017
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 5 17:25 EDT 2024. Contains 374953 sequences. (Running on oeis4.)