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!)
A000752 Boustrophedon transform of powers of 2. 7

%I #41 Jun 12 2022 12:00:48

%S 1,3,9,28,93,338,1369,6238,31993,183618,1169229,8187598,62545893,

%T 517622498,4613366689,44054301358,448733127793,4856429646978,

%U 55650582121749,673136951045518,8570645832753693,114581094529057058,1604780986816602409,23497612049668468078

%N Boustrophedon transform of powers of 2.

%H Reinhard Zumkeller, <a href="/A000752/b000752.txt">Table of n, a(n) for n = 0..400</a>

%H Peter Luschny, <a href="http://oeis.org/wiki/User:Peter_Luschny/SeidelTransform">An old operation on sequences: the Seidel transform</a>.

%H J. Millar, N. J. A. Sloane and N. E. Young, A new operation on sequences: the Boustrophedon transform, J. Combin. Theory, 17A (1996) 44-54 (<a href="http://neilsloane.com/doc/bous.txt">Abstract</a>, <a href="http://neilsloane.com/doc/bous.pdf">pdf</a>, <a href="http://neilsloane.com/doc/bous.ps">ps</a>).

%H N. J. A. Sloane, <a href="/transforms.txt">Transforms</a>.

%H Wikipedia, <a href="https://en.wikipedia.org/wiki/Boustrophedon_transform">Boustrophedon transform</a>.

%H <a href="/index/Bo#boustrophedon">Index entries for sequences related to boustrophedon transform</a>

%F E.g.f.: exp(2*x) (tan(x) + sec(x)).

%F a(n) = Sum_{k=0..n} A109449(n,k)*2^k. - _Reinhard Zumkeller_, Nov 03 2013

%F G.f.: E(0)*x/(1 - 2*x)/(1 - 3*x) + 1/(1 - 2*x), where E(k) = 1 - x^2*(k+1)*(k+2)/(x^2*(k+1)*(k+2) - 2*(x*(k+3) - 1)*(x*(k+4) -1)/E(k+1) ); (continued fraction). - _Sergei N. Gladkovskii_, Jan 16 2014

%F a(n) ~ n! * exp(Pi) * 2^(n+2) / Pi^(n+1). - _Vaclav Kotesovec_, Jun 12 2015

%t t[n_, 0] := 2^n; t[n_, k_] := t[n, k] = t[n, k - 1] + t[n - 1, n - k]; a[n_] := t[n, n]; Array[a, 30, 0] (* _Jean-François Alcover_, Feb 12 2016 *)

%t With[{nn=30},CoefficientList[Series[Exp[2x](Tan[ x]+Sec[x]),{x,0,nn}],x] Range[ 0,nn]!] (* _Harvey P. Dale_, Dec 15 2018 *)

%o (Haskell)

%o a000752 n = sum $ zipWith (*) (a109449_row n) a000079_list

%o -- _Reinhard Zumkeller_, Nov 03 2013

%o (Python)

%o from itertools import accumulate, islice

%o def A000752_gen(): # generator of terms

%o blist, m = tuple(), 1

%o while True:

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

%o m *= 2

%o A000752_list = list(islice(A000752_gen(),40)) # _Chai Wah Wu_, Jun 12 2022

%Y Cf. A000079, A000734.

%Y Column k=2 of A292975.

%K nonn

%O 0,2

%A _N. J. A. Sloane_

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