The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A230951 Boustrophedon transform of Thue-Morse sequence A010059. 5
1, 1, 1, 3, 9, 27, 108, 475, 2421, 13859, 88254, 617957, 4720980, 39070669, 348225424, 3325303894, 33871280413, 366573108019, 4200618576106, 50809739256049, 646929695900154, 8648812936664311, 121132117170628444, 1773647319453218254, 27099334868109293640 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
J. Millar, N. J. A. Sloane and N. E. Young, A new operation on sequences: the Boustrophedon transform, J. Combin. Theory, 17A 44-54 1996 (Abstract, pdf, ps).
FORMULA
a(n) = Sum_{k=0..n} A109449(n,k)*A010059(k).
PROG
(Haskell)
a230951 n = sum $ zipWith (*) (a109449_row n) $ map fromIntegral a010059_list
(Python)
from itertools import count, islice, accumulate
def A230951_gen(): # generator of terms
blist = tuple()
for i in count(0):
yield (blist := tuple(accumulate(reversed(blist), initial=i.bit_count()&1^1)))[-1]
A230951_list = list(islice(A230951_gen(), 30)) # Chai Wah Wu, Apr 17 2023
CROSSREFS
Sequence in context: A325047 A148929 A148930 * A121746 A323927 A146151
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Nov 03 2013
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 May 15 04:25 EDT 2024. Contains 372536 sequences. (Running on oeis4.)