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!)
A299483 Irregular triangle read by rows in which row n lists the odd divisors of n in increasing order together with the even divisors of n in decreasing order. 7
1, 1, 2, 1, 3, 1, 4, 2, 1, 5, 1, 3, 6, 2, 1, 7, 1, 8, 4, 2, 1, 3, 9, 1, 5, 10, 2, 1, 11, 1, 3, 12, 6, 4, 2, 1, 13, 1, 7, 14, 2, 1, 3, 5, 15, 1, 16, 8, 4, 2, 1, 17, 1, 3, 9, 18, 6, 2, 1, 19, 1, 5, 20, 10, 4, 2, 1, 3, 7, 21, 1, 11, 22, 2, 1, 23, 1, 3, 24, 12, 8, 6, 4, 2, 1, 5, 25, 1, 13, 26, 2, 1, 3, 9, 27 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
Consider the diagram with overlapping periodic curves that appears in the Links section (figure 1). The number of curves that contain the point [n,0] equals the number of divisors of n. The simpler interpretation of the diagram is that the curve of diameter d represents the divisor d of n. Now here we introduce a new interpretation: the curve of diameter d that contains the point [n,0] represents the divisor c of n, where c = n/d. This model has the property that each odd quadrant centered at [n,0] contains the curves that represent the even divisors of n, and each even quadrant centered at [n,0] contains the curves that represent the odd divisors of n.
We can find the n-th row of the triangle as follows:
Consider only the semicircumferences that contain the point [n,0].
In the second quadrant from top to bottom we can see the curves that represent the odd divisors of n in increasing order. Also we can see these curves in the fourth quadrant from bottom to top.
Then, if n is an even number, in the first quadrant from bottom to top we can see the curves that represent the even divisors of n in decreasing order. Also we can see these curves in the third quadrant from top to bottom (see example).
Sequences of the same family are shown below:
-----------------------------------
Triangle Order of divisors of n
-----------------------------------
A299481 odd v t.w. even ^
This seq. odd ^ t.w. even v
A319844 even v t.w. odd ^
A319845 even ^ t.w. odd v
A319846 odd v t.w. even v
A319847 odd ^ t.w. even ^
A319848 even v t.w. odd v
A319849 even ^ t.w. odd ^
-----------------------------------
In the above table we have that:
"even v" means "even divisors of n in decreasing order".
"even ^" means "even divisors of n in increasing order".
"odd v" means "odd divisors of n in decreasing order".
"odd ^" means "odd divisors of n in increasing order".
"t.w." means "together with".
LINKS
EXAMPLE
Triangle begins:
1;
1, 2;
1, 3;
1, 4, 2;
1, 5;
1, 3, 6, 2;
1, 7;
1, 8, 4, 2;
1, 3, 9;
1, 5, 10, 2;
1, 11;
1, 3, 12, 6, 4, 2;
1, 13;
1, 7, 14, 2;
1, 3, 5, 15;
1, 16, 8, 4, 2;
1, 17;
1, 3, 9, 18, 6, 2;
1, 19;
1, 5, 20, 10, 4, 2;
1, 3, 7, 21;
1, 11, 22, 2;
1, 23;
1, 3, 24, 12, 8, 6, 4, 2;
1, 5, 25;
1, 13, 26, 2;
1, 3, 9, 27;
1, 7, 28, 14, 4, 2;
...
For n = 12 the divisors of 12 are [1, 2, 3, 4, 6, 12]. The odd divisors of 12 in increasing order are [1, 3], and the even divisors of 12 in decreasing order are [12, 6, 4, 2], so the 12th row of triangle is [1, 3, 12, 6, 4, 2].
On the other hand, consider the diagram that appears in the Links section (figure 1). Then consider only the semicircumferences that contain the point [12,0]. In the second quadrant, from top to bottom, we can see the curves with diameters [12, 4]. Also we can see these curves in the fourth quadrant from bottom to top. The associated numbers c = 12/d are [1, 3] respectively. These are the odd divisors of 12 in increasing order. Then, in the first quadrant, from bottom to top, we can see the curves with diameters [1, 2, 3, 6]. Also we can see these curves in the third quadrant from top the bottom. The associated numbers c = 12/d are [12, 6, 4, 2] respectively. These are the even divisors of n in decreasing order. Finally all numbers c obtained are [1, 3, 12, 6, 4, 2] equaling the 12th row of triangle.
PROG
(PARI) row(n) = my(d=divisors(n)); concat(select(x->(x%2), d), Vecrev(select(x->!(x%2), d)));
lista(nn) = {for (n=1, nn, my(r = row(n)); for (k=1, #r, print1(r[k], ", ")); ); } \\ Michel Marcus, Jan 17 2019
CROSSREFS
Row sums give A000203.
Row n has length A000005(n).
Column 1 gives A000012.
Right border gives A141310.
Sequence in context: A303753 A088242 A228814 * A113398 A210959 A319848
KEYWORD
nonn,tabf
AUTHOR
Omar E. Pol, Feb 11 2018
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 05:19 EDT 2024. Contains 371782 sequences. (Running on oeis4.)