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!)
A000697 Boustrophedon transform of 1, 1, 4, 9, 16, ... 4

%I #51 Jun 12 2022 12:00:51

%S 1,2,7,26,89,316,1243,5564,28321,162160,1032051,7226636,55206161,

%T 456886912,4072080587,38885496092,396084390849,4286637591872,

%U 49121248360291,594159600856332,7565074996215025,101137602761945440

%N Boustrophedon transform of 1, 1, 4, 9, 16, ...

%H Reinhard Zumkeller, <a href="/A000697/b000697.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.: (1 + exp(x)*x*(1 + x))*(sec(x) + tan(x)). - _Sergei N. Gladkovskii_, Oct 29 2014

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

%t t[n_, 0] := If[n==0, 1, n^2]; 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 *)

%o (Haskell)

%o a000697 n = sum $ zipWith (*) (a109449_row n) (1 : tail a000290_list)

%o -- _Reinhard Zumkeller_, Nov 04 2013

%o (Python)

%o from itertools import accumulate, count, islice

%o def A000697_gen(): # generator of terms

%o yield 1

%o blist, m = (1,), 1

%o for i in count(1):

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

%o m += 2*i+1

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

%Y Cf. A000290, A000745, A109449.

%K nonn

%O 0,2

%A _N. J. A. Sloane_, _Simon Plouffe_

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