OFFSET
1,2
COMMENTS
The variant with strict inequality (A375814) is finite; is this sequence infinite?
LINKS
Rémy Sigrist, Table of n, a(n) for n = 1..10000
EXAMPLE
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
PROG
(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]", "); ); }
CROSSREFS
KEYWORD
nonn
AUTHOR
Rémy Sigrist, Aug 30 2024
STATUS
approved