[go: up one dir, main page]

login
Revision History for A058257 (Bold, blue-underlined text is an addition; faded, red-underlined text is a deletion.)

Showing entries 1-10 | older changes
Triangle read by rows: this is a variant of A008280 in which 2 rows go from left to right, 2 from right to left, 2 from left to right, etc.
(history; published version)
#15 by N. J. A. Sloane at Thu Feb 18 00:43:13 EST 2021
STATUS

proposed

approved

#14 by Petros Hadjicostas at Thu Feb 18 00:25:54 EST 2021
STATUS

editing

proposed

#13 by Petros Hadjicostas at Thu Feb 18 00:25:06 EST 2021
LINKS

J. Millar, N. J. A. Sloane and N. E. Young, A new operation on sequences: the Boustrophedon on transform, J. Combin. Theory, 17A (1996), 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>).

EXAMPLE

0, 1;

0, 0, 1;

1, 1, 1, 0;

3, 2, 1, 0, 0;

0, 3, 5, 6, 6, 6;

STATUS

approved

editing

#12 by Bruno Berselli at Tue Mar 12 06:34:29 EDT 2019
STATUS

proposed

approved

#11 by Michel Marcus at Tue Mar 12 05:56:01 EDT 2019
STATUS

editing

proposed

#10 by Michel Marcus at Tue Mar 12 05:55:21 EDT 2019
COMMENTS

Suggested by first Atkinson referencearticle in Information Processing Letters.

REFERENCES

M. D. Atkinson: Zigzag permutations , Partial orders and comparison problems, Sixteenth Southeastern Conference on Combinatorics, Graph Theory and comparisons of adjacent elements, Information Processing Letters 21 Computing, (Boca Raton, Feb 1985), 187Congressus Numerantium 47, 77-18988.

M. D. Atkinson: Partial orders and comparison problems, Sixteenth Southeastern Conference on Combinatorics, Graph Theory and Computing, (Boca Raton, Feb 1985), Congressus Numerantium 47, 77-88.

LINKS

M. D. Atkinson, <a href="https://doi.org/10.1016/0020-0190(85)90057-2">Zigzag permutations and comparisons of adjacent elements</a>, Information Processing Letters 21 (1985), 187-189.

EXAMPLE

1; 0,1; 0,0,1; 1,1,1,0; 3,2,1,0,0; 0,3,5,6,6,6; ...

Triangle begins:

1;

0,1;

0,0,1;

1,1,1,0;

3,2,1,0,0;

0,3,5,6,6,6;

...

STATUS

approved

editing

Discussion
Tue Mar 12
05:56
Michel Marcus: I hate it ...
#9 by Reinhard Zumkeller at Fri Nov 01 15:30:16 EDT 2013
STATUS

editing

approved

#8 by Reinhard Zumkeller at Fri Nov 01 12:31:16 EDT 2013
LINKS

Reinhard Zumkeller, <a href="/A058257/b058257.txt">Rows n = 0..120 of triangle, flattened</a>

Reinhard Zumkeller, <a href="/A058257/b058257.txt">Table of n, a(n) for n = 0..7380</a>

PROG

(Haskell)

a058257 n k = a058257_tabl !! n !! k

a058257_row n = a058257_tabl !! n

a058257_tabl = [1] : ox 0 [1] where

ox turn xs = ys : ox (mod (turn + 1) 4) ys

where ys | turn <= 1 = scanl (+) 0 xs

| otherwise = reverse $ scanl (+) 0 $ reverse xs

-- Reinhard Zumkeller, Nov 01 2013

#7 by Reinhard Zumkeller at Fri Nov 01 12:29:04 EDT 2013
LINKS

Reinhard Zumkeller, <a href="/A058257/b058257.txt">Table of n, a(n) for n = 0..7380</a>

STATUS

approved

editing

#6 by Charles R Greathouse IV at Thu Oct 04 10:28:39 EDT 2012
LINKS

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

Discussion
Thu Oct 04
10:28
OEIS Server: https://oeis.org/edit/global/1833