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!)
A152226 Binomial transform of A027826. 1

%I #11 Jun 04 2018 03:12:24

%S 1,2,5,14,42,132,428,1416,4745,16034,54505,186166,638538,2198692,

%T 7598624,26350944,91670946,319825796,1118686730,3921801820,

%U 13775938132,48473233032,170815501576,602710956464,2128981351316,7527515059432,26637591204996,94331697697688

%N Binomial transform of A027826.

%H Alois P. Heinz, <a href="/A152226/b152226.txt">Table of n, a(n) for n = 0..1000</a>

%F A007318 * A027826 as a vector. A027826 = [1, 1, 2, 4, 9, 21, 50, 120, 290,...].

%e a(3) = 14 = (1, 1, 2, 4) dot (1, 3, 3, 1) = (1 + 3 + 6 + 4).

%p b:= proc(n) option remember; add(`if`(k=0, 1,

%p `if`(k::odd, 0, b(k/2)))*binomial(n, k), k=0..n)

%p end:

%p a:= n-> add(b(k)*binomial(n, k), k=0..n):

%p seq(a(n), n=0..40); # _Alois P. Heinz_, Jul 08 2015

%t b[n_] := b[n] = Sum[If[k == 0, 1, If[OddQ[k], 0, b[k/2]]]*Binomial[n, k], {k, 0, n}];

%t a[n_] := Sum[b[k]*Binomial[n, k], {k, 0, n}];

%t Table[a[n], {n, 0, 40}] (* _Jean-François Alcover_, Jun 04 2018, from Maple *)

%Y Cf. A027826.

%K nonn

%O 0,2

%A _Gary W. Adamson_, Nov 29 2008

%E A-Number corrected by _R. J. Mathar_, Apr 04 2012

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