A186350 Adjusted joint rank sequence of (f(i)) and (g(j)) with f(i) before g(j) when f(i)=g(j), where f and g are the odd numbers and the triangular numbers. Complement of A186351.
1, 3, 5, 7, 8, 10, 11, 12, 14, 15, 16, 18, 19, 20, 22, 23, 24, 25, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 45, 46, 47, 48, 49, 50, 52, 53, 54, 55, 56, 57, 58, 60, 61, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 76, 77, 78, 79, 80, 81, 82, 83, 85, 86, 87, 88, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 105, 106, 107, 108, 109, 110, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 138, 139, 140, 141
Offset: 1
Keywords
A186353 Adjusted joint rank sequence of (f(i)) and (g(j)) with f(i) after g(j) when f(i)=g(j), where f and g are the odd numbers and the triangular numbers. Complement of A186353.
1, 3, 6, 9, 12, 16, 21, 26, 31, 37, 44, 51, 58, 66, 75, 84, 93, 103, 114, 125, 136, 148, 161, 174, 187, 201, 216, 231, 246, 262, 279, 296, 313, 331, 350, 369, 388, 408, 429, 450, 471, 493, 516, 539, 562, 586, 611, 636, 661, 687, 714, 741, 768, 796, 825, 854, 883, 913, 944, 975, 1006, 1038, 1071, 1104, 1137, 1171, 1206, 1241, 1276, 1312, 1349, 1386, 1423, 1461, 1500, 1539, 1578, 1618, 1659, 1700, 1741, 1783, 1826, 1869, 1912, 1956, 2001, 2046, 2091
Offset: 1
Keywords
Examples
First, write 1..3..5..7..9..11..13..15..17..21..23.. (odds) 1..3....6.....10.......15......21.... (triangular) Then replace each number by its rank, where ties are settled by ranking the odd number after the triangular: a=(2,4,5,7,8,10,11,13,14,15,....)=A186352 b=(1,3,6,9,12,16,21,26,31,37,...)=A186353.
Programs
-
Mathematica
(See A186352.)
A186352 Adjusted joint rank sequence of (f(i)) and (g(j)) with f(i) after g(j) when f(i)=g(j), where f and g are the odd numbers and the triangular numbers. Complement of A186353.
2, 4, 5, 7, 8, 10, 11, 13, 14, 15, 17, 18, 19, 20, 22, 23, 24, 25, 27, 28, 29, 30, 32, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 45, 46, 47, 48, 49, 50, 52, 53, 54, 55, 56, 57, 59, 60, 61, 62, 63, 64, 65, 67, 68, 69, 70, 71, 72, 73, 74, 76, 77, 78, 79, 80, 81, 82, 83, 85, 86, 87, 88, 89, 90, 91, 92, 94, 95, 96, 97, 98, 99, 100, 101, 102, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 137, 138, 139, 140, 141
Offset: 1
Keywords
Examples
First, write 1..3..5..7..9..11..13..15..17..21..23.. (odds) 1..3....6.....10.......15......21.... (triangular) Then replace each number by its rank, where ties are settled by ranking the odd number after the triangular: a=(2,4,5,7,8,10,11,13,14,15,....)=A186352 b=(1,3,6,9,12,16,21,26,31,37,...)=A186353.
Programs
-
Mathematica
(* adjusted joint rank sequences a and b, using general formula for ranking 1st degree u*n+v and 2nd degree x*n^2+y*n+z *) d=-1/2; u=2; v=-1; x=1/2; y=1/2; (* odds and triangular *) h[n_]:=(-y+(4x(u*n+v-d)+y^2)^(1/2))/(2x); a[n_]:=n+Floor[h[n]]; (* rank of u*n+v *) k[n_]:=(x*n^2+y*n-v+d)/u; b[n_]:=n+Floor[k[n]]; (* rank of x*n^2+y*n+d *) Table[a[n], {n, 1, 120}] (* A186352 *) Table[b[n], {n, 1, 100}] (* A186353 *)
A227687 Least splitter of s(n) and s(n+1), where s(n) = 1/sqrt(1) + 1/sqrt(2) + ... + 1/sqrt(n).
1, 1, 2, 1, 2, 1, 3, 2, 1, 4, 2, 3, 1, 3, 2, 3, 1, 3, 2, 3, 1, 5, 3, 2, 3, 1, 5, 3, 2, 3, 5, 1, 4, 3, 2, 3, 5, 1, 4, 3, 2, 3, 4, 1, 6, 4, 3, 2, 3, 5, 1, 6, 4, 3, 2, 3, 4, 7, 1, 5, 3, 5, 2, 3, 4, 7, 1, 5, 4, 3, 2, 3, 4, 6, 1, 7, 4, 3, 5, 2, 3, 4, 6, 1, 8, 5
Offset: 1
Comments
Suppose that x < y. The least splitter of x and y is introduced at A227631 as the least positive integer d such that x <= c/d < y for some integer c; the number c/d is called the least splitting rational of x and y.
The positions of 1 in this sequences (indicating those least splitting rationals of s(n) and s(n+1) which are integers) are given by A186351.
Examples
The denominators (A227687) and numerators (A227688) can be read from these chains: 1 < 2 < 5/2 < 3 < 7/2 < 4 < 13/3 < 9/2 < 5 < 21/4 < 11/2 < 17/3 < 6 < . . . s(1) <= 1 < s(2) < 2 < s(3) < 5/2 < s(4) < 3 < s(5) < 4 < s(6) < 13/3 < . . .
Links
- Clark Kimberling, Table of n, a(n) for n = 1..1000
Comments
Examples
Crossrefs
Programs
Mathematica
Formula