A375815 Lexicographically earliest sequence of positive integers such that for any n > 0, Sum_{k = 1..n} 1/(a(k)*a(n+1-k)) <= 1.
1, 2, 3, 3, 4, 4, 5, 5, 5, 5, 6, 6, 6, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, 10, 11, 10, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 12, 12, 13, 12, 13, 13, 13, 13, 13, 13, 14, 14, 14, 14, 14, 14, 14, 14, 14, 15, 14, 15, 15, 15
Offset: 1
Keywords
Examples
The first terms, alongside the corresponding sums, are: n a(n) Sum {k=1..n} 1/(a(k)*a(n+1-k)) -- ---- ------------------------------ 1 1 1 2 2 1 3 3 11/12 4 3 1 5 4 17/18 6 4 35/36 7 5 167/180 8 5 14/15 9 5 77/80 10 5 119/120 11 6 77/80 12 6 29/30 13 6 443/450 14 7 3007/3150 15 7 6011/6300
Links
- Rémy Sigrist, Table of n, a(n) for n = 1..10000
Programs
-
PARI
{ for (n = 1, #a = vector(72), if (n==1, a[n] = 1, x = sum(k = 2, n-1, 1/(a[k]*a[n+1-k])); if (x >= 1, break, a[n] = ceil(2/(a[1]*(1-x))););); print1 (a[n]", ");); }
Comments