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

%I #16 Apr 17 2023 11:18:12

%S 2,2,2,4,10,32,122,544,2770,15872,101042,707584,5405530,44736512,

%T 398721962,3807514624,38783024290,419730685952,4809759350882,

%U 58177770225664,740742376475050,9902996106248192,138697748786275802,2030847773013704704,31029068327114173810,493842960380415967232

%N Twice the Euler or up/down numbers A000111.

%H S. T. Thompson, <a href="/A260786/a260786.pdf">Problem E754: Skew Ordered Sequences</a>, Amer. Math. Monthly, 54 (1947), 416-417. [Annotated scanned copy]

%F 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).

%p f:=proc(n) option remember;

%p if n <= 1 then 2 else (1/4)*add(binomial(n-1,k-1)*f(k-1)*f(n-k),k=1..n); fi;

%p end;

%p [seq(f(n),n=0..30)];

%o (Python)

%o from itertools import accumulate, islice

%o def A260786_gen(): # generator of terms

%o yield from (2,2)

%o blist = (0,2)

%o while True:

%o yield (blist := tuple(accumulate(reversed(blist),initial=0)))[-1]

%o A260786_list = list(islice(A260786_gen(),30)) # _Chai Wah Wu_, Apr 17 2023

%Y Cf. A000111.

%Y Apart from initial terms, same as A001250.

%K nonn

%O 0,1

%A _N. J. A. Sloane_, Aug 04 2015

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 19 04:12 EDT 2024. Contains 371782 sequences. (Running on oeis4.)