OFFSET
1,2
COMMENTS
FORMULA
Numerators of the ratio a(n)/A277440(n), which is the first column of the array (T(n,k): n,k >= 1) that is defined by the following recurrence:
T(1,1) = 1.
T(n,k) = if k = 1 then n/(Product_{i=1..n-1}(T(n + 1, k + i)))/(Product_{i=1..n-1}(T(n - 1, k + i))) else if(mod(n, k) = 0 then T(n/k, 1) else 1) else 1).
EXAMPLE
The ratio starts: 1, 2, 3/2, 4, 5/6, 6, 7/24, 16/3, 27/40, 20/3, 11/120, 12, 13/42, ..., where the integer terms are 1, 2, 4, 6, 12,.... For n > 2, the latter sequence equals A014574 (average of twin primes).
MATHEMATICA
Clear[t]; nn = 49; t[1, 1] = 1; t[n_, k_] := t[n, k] = If[k == 1, n/Product[t[n + 1, k + i], {i, 1, n - 1}]/Product[t[n - 1, k + i], {i, 1, n - 1}], If[Mod[n, k] == 0, t[n/k, 1], 1], 1]; a = Table[t[n, 1], {n, 1, nn}]; Denominator[a]; Numerator[a]
CROSSREFS
KEYWORD
nonn,frac
AUTHOR
Mats Granvik, Oct 15 2016
STATUS
approved