This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A230954 #17 Jun 12 2022 14:06:01 %S A230954 4,10,24,59,162,526,2016,8978,45696,261760,1666308,11668652,89141580, %T A230954 737740174,6575238599,62788901290,639562492327,6921688171153, %U A230954 79316703841369,959397056891093,12215422719238138,163308172248420391,2287234651735371577 %N A230954 Boustrophedon transform of composite numbers. %H A230954 Reinhard Zumkeller, <a href="/A230954/b230954.txt">Table of n, a(n) for n = 0..400</a> %H A230954 Peter Luschny, <a href="http://oeis.org/wiki/User:Peter_Luschny/SeidelTransform">An old operation on sequences: the Seidel transform</a> %H A230954 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 (<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 A230954 Wikipedia, <a href="http://en.wikipedia.org/wiki/Boustrophedon_transform">Boustrophedon transform</a> %H A230954 <a href="/index/Bo#boustrophedon">Index entries for sequences related to boustrophedon transform</a> %F A230954 a(n) = sum(A109449(n,k)*A002808(k+1): k=0..n). %t A230954 cc = Select[Range[max = 40], CompositeQ]; t[n_, 0] := cc[[n+1]]; t[n_, k_] := t[n, k] = t[n, k-1] + t[n-1, n-k]; a[n_] := t[n, n]; Array[a, cc // Length, 0] (* _Jean-François Alcover_, Feb 12 2016 *) %o A230954 (Haskell) %o A230954 a230954 n = sum $ zipWith (*) (a109449_row n) a002808_list %o A230954 (Python) %o A230954 from itertools import accumulate, count, islice %o A230954 from sympy import composite %o A230954 def A230954_gen(): # generator of terms %o A230954 blist = tuple() %o A230954 for i in count(1): %o A230954 yield (blist := tuple(accumulate(reversed(blist),initial=composite(i))))[-1] %o A230954 A230954_list = list(islice(A230954_gen(),40)) # _Chai Wah Wu_, Jun 12 2022 %Y A230954 Cf. A230955, A000747, A000732, A230953. %K A230954 nonn %O A230954 0,1 %A A230954 _Reinhard Zumkeller_, Nov 03 2013