OFFSET
0,2
COMMENTS
If the condition for a(n) is simply to be greater than a(n-1) then the sequence is A000027: the natural numbers.
a(n)~5/2*n.
LINKS
Robert G. Wilson v, Table of n, a(n) for n = 0..7012.
MATHEMATICA
a[n_] := a[n] = Block[{k = a[n - 1] + 2, s = Sum[ a[i]*x^i, {i, 0, n - 1}]}, While[ !IntegerQ@ Last@ CoefficientList[ Series[ Sqrt[s + k*x^n], {x, 0, n}], x], k++ ]; k]; a[0] = 1; Table[ a[n], {n, 0, 63}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna & Robert G. Wilson v, Nov 04 2007; definition corrected Sep 19 2008
STATUS
approved