A083950 Integer coefficients of A(x), where 1<=a(n)<=10, such that A(x)^(1/10) consists entirely of integer coefficients.
1, 10, 5, 10, 10, 2, 5, 10, 10, 10, 3, 10, 5, 10, 10, 2, 10, 10, 10, 10, 5, 10, 5, 10, 5, 8, 5, 10, 5, 10, 8, 10, 10, 10, 10, 4, 5, 10, 10, 10, 7, 10, 10, 10, 5, 2, 10, 10, 5, 10, 7, 10, 5, 10, 5, 4, 10, 10, 10, 10, 7, 10, 10, 10, 10, 2, 5, 10, 5, 10, 9, 10, 5, 10, 5, 6, 5, 10, 10, 10, 8
Offset: 0
Keywords
Links
- Robert G. Wilson v, Table of n, a(n) for n = 0..3000.
Programs
-
Mathematica
a[0] = 1; a[n_] := a[n] = Block[{k = 1, s = Sum[a[i]*x^i, {i, 0, n-1}]}, While[ Union[ IntegerQ /@ CoefficientList[ Series[(s+k*x^n)^(1/10), {x, 0, n}], x]] != {True}, k++ ]; k]; Table[ a[n], {n, 0, 80}] (* Robert G. Wilson v *)
Extensions
More terms from Robert G. Wilson v, Jul 26 2005
Comments