A084066 Least integer coefficients of A(x), where 1<=a(n)<=11, such that A(x)^(1/11) consists entirely of integer coefficients.
1, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 1, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 7, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 4, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 9, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 5, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 5, 11, 11, 11, 11, 11
Offset: 0
Keywords
Links
- Robert G. Wilson v, Table of n, a(n) for n = 0..3000.
Crossrefs
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/11), {x, 0, n}], x]] != {True}, k++ ]; k]; Table[ a[n], {n, 0, 71}] (* Robert G. Wilson v *)
Formula
a(k)=0 (mod 11) when k not= 0 (mod 11); a(0)=1, a(11)=1, a(22)=7, a(33)=4, a(44)=9, a(55)=5, a(66)=5, ...
Extensions
More terms from Robert G. Wilson v, Jul 26 2005
Comments