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!)
A247349 Regular triangle obtained by procedure described in comment in the case of m=3. 0
1, 1, 2, 2, 1, 2, 2, 1, 2, 3, 3, 2, 1, 2, 3, 2, 3, 3, 2, 1, 4, 2, 1, 4, 2, 3, 3, 3, 2, 3, 3, 3, 2, 1, 4, 3, 3, 2, 1, 4, 3, 2, 3, 3, 3, 4, 3, 2, 3, 3, 3, 3, 2, 1, 4, 3, 3, 3, 3, 2, 1, 4, 4, 3, 2, 5, 3, 2, 1, 4, 4, 3, 2, 5, 3, 3, 3, 4, 4, 4, 3, 2, 5, 3, 3, 3, 4, 3, 2, 1, 4 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
"Consider an array of numbers formed by a rotating queue: starting with just the number 1, to obtain the next row we move everything in the last row m steps to the left, with numbers at the front of the row cycling around and appearing at the back. We then append 1 plus the head of the last row to the new row." (from the Introduction of article by P. J. Graber).
LINKS
Philip Jameson Graber, Rotation Remainders, arXiv:1409.4113 [math.NT], 2014.
PROG
(PARI) moveleft(v, m) = {va = v; for (i=1, m, nb = #va; vb = vector(nb, i, if (i<nb, va[i+1], va[1])); va = vb; ); va; }
newrow(v, m) = {w = moveleft(v, m); concat(w, 1+v[1]); }
trg(nn) = {m = 3; v = [1]; for (n=1, nn, for (i=1, #v, print1(v[i], ", ")); print(); v = newrow(v, m); ); }
CROSSREFS
Cf. A238303 (triangle obtained when m=0).
Sequence in context: A073044 A361870 A124800 * A069163 A025260 A227156
KEYWORD
nonn,tabl
AUTHOR
Michel Marcus, Sep 16 2014
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 April 19 23:40 EDT 2024. Contains 371798 sequences. (Running on oeis4.)