OFFSET
1,3
COMMENTS
The polynomials y(x)=x^n+c(n) can only be connected at x=n/(n+1) and with coefficients c(n) = { 0, 1/4, 43/108, 3481/6912, ... }. The denominator of c(n) is A061464. The numerator is our sequence a(n)
LINKS
Inigo Quilez, Table of n, a(n) for n = 1..50
Inigo Quilez, Live demo of the polynomials y(x)
FORMULA
a(n) = numerator of Sum_{i=1..n} (i^i)/((i+1)^(i+1)).
PROG
(PARI) a(n) = my(p=1); numerator(sum(i=2, n, p/(p=i^i))); \\ Kevin Ryde, Oct 03 2022
CROSSREFS
KEYWORD
nonn,frac
AUTHOR
Inigo Quilez, Oct 03 2022
STATUS
approved