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!)
A260786 Twice the Euler or up/down numbers A000111. 4
2, 2, 2, 4, 10, 32, 122, 544, 2770, 15872, 101042, 707584, 5405530, 44736512, 398721962, 3807514624, 38783024290, 419730685952, 4809759350882, 58177770225664, 740742376475050, 9902996106248192, 138697748786275802, 2030847773013704704, 31029068327114173810, 493842960380415967232 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
S. T. Thompson, Problem E754: Skew Ordered Sequences, Amer. Math. Monthly, 54 (1947), 416-417. [Annotated scanned copy]
FORMULA
a(0)=a(1)=2; thereafter a(n) = (1/4)*Sum_{k=1..n} binomial(n-1, k-1)*a(k-1)*a(n-k).
MAPLE
f:=proc(n) option remember;
if n <= 1 then 2 else (1/4)*add(binomial(n-1, k-1)*f(k-1)*f(n-k), k=1..n); fi;
end;
[seq(f(n), n=0..30)];
PROG
(Python)
from itertools import accumulate, islice
def A260786_gen(): # generator of terms
yield from (2, 2)
blist = (0, 2)
while True:
yield (blist := tuple(accumulate(reversed(blist), initial=0)))[-1]
A260786_list = list(islice(A260786_gen(), 30)) # Chai Wah Wu, Apr 17 2023
CROSSREFS
Cf. A000111.
Apart from initial terms, same as A001250.
Sequence in context: A307522 A130707 A131562 * A067920 A107902 A142974
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Aug 04 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 08:27 EDT 2024. Contains 371964 sequences. (Running on oeis4.)