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!)
A056536 Mapping from half-antidiagonal reading of the triangle (as used in A028297) to the column-by-column reading of the triangular tables. 6
1, 2, 4, 3, 7, 5, 11, 8, 6, 16, 12, 9, 22, 17, 13, 10, 29, 23, 18, 14, 37, 30, 24, 19, 15, 46, 38, 31, 25, 20, 56, 47, 39, 32, 26, 21, 67, 57, 48, 40, 33, 27, 79, 68, 58, 49, 41, 34, 28, 92, 80, 69, 59, 50, 42, 35, 106, 93, 81, 70, 60, 51, 43, 36, 121, 107, 94, 82, 71, 61, 52 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Moves squares (A000290) to triangular numbers (A000217). See 1st formula.
This sequence may be regarded as a triangular array read by rows: 1; 2; 4, 3; 7, 5; 11, 8, 6; 16, 12, 9; 22, 17, 13, 10; .... with row sums: A079824 = [1, 2, 7, 12, 25, 37, 62, 84, ...]. - Philippe Deléham, Feb 16 2004
LINKS
FORMULA
a(A000290(i)) = A000217(i) for all i >= 1.
a(n) = A091018(n-1) + 1.
EXAMPLE
As a triangular array read by rows:
1;
2;
4, 3;
7, 5;
11, 8, 6;
16, 12, 9;
22, 17, 13, 10;
29, 23, 18, 14;
37, 30, 24, 19, 15;
46, 38, 31, 25, 20;
56, 47, 39, 32, 26, 21;
67, 57, 48, 40, 33, 27;
79, 68, 58, 49, 41, 34, 28;
92, 80, 69, 59, 50, 42, 35;
106, 93, 81, 70, 60, 51, 43, 36;
...
MAPLE
triang_perm := proc(upto_d) local a, i, j; a := []; for i from 1 to upto_d do for j from 1 to floor((i+1)/2) do a := [op(a), binomial((i-j)+1, 2)+j]; od; od; RETURN(a); end;
CROSSREFS
Sequence in context: A255128 A252460 A252752 * A258237 A361939 A371237
KEYWORD
nonn
AUTHOR
Antti Karttunen, Jun 20 2000
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 9 23:14 EDT 2024. Contains 372354 sequences. (Running on oeis4.)