|
Search: id:A000905
|
|
|
| A000905 |
|
Hamilton numbers. (Formerly M0736 N0275)
|
|
+0 4
|
|
| 2, 3, 5, 11, 47, 923, 409619, 83763206255, 3508125906290858798171, 6153473687096578758448522809275077520433167, 18932619208894981833333582059033329370801266249535902023330546944758507753065602135843
(list; graph; listen)
|
|
|
OFFSET
|
1,1
|
|
|
COMMENT
|
a(n) = minimal degree of an equation from which n successive terms after the first can be removed (by a series of transformation comparable to Tschirnhaus') without requiring the solution of an equation of degree greater than n (and excluding cases where an equation of degree greater than n is needed but is in fact factorizable into several equations of degree all less than n). Hamilton computed the first six terms of this sequence (see reference). That is the reason why Sylvester and Hammond named them "Hamilton numbers". - Olivier GERARD (ogerard(AT)ext.jussieu.fr), Oct 17 2007
|
|
REFERENCES
|
J. J. Sylvester and M. J. Hammond, On Hamilton's numbers, Phil. Trans. Roy. Soc., 178 (1887), 285-312.
Raymond Garver, The Tschinrhaus transformation, The Annals of Mathematics, 2nd Ser., Vol. 29, No. 1/4. (1927 - 1928), pp. 329.
W. R. Hamilton, Sixth Report of the British Association for the Advancement of Science, London, 183i, 295-348.
|
|
LINKS
|
E. Lucas, Th\'{e}orie des Nombres. Gauthier-Villars, Paris, 1891, Vol. 1, p. 496.
|
|
EXAMPLE
|
a(1)=2 is the familiar fact than one can always remove the linear term of a quadratic equation.
a(2)=3 because one can put any cubic equation in the form x^3-a=0 by a Tschirnhaus transformation based on the solutions of a quadratic equation.
a(4)=11 because one can remove the 4 terms after the first term in a polynomial of degree 11 without having to solve a quintic.
|
|
MAPLE
|
A000905 := proc(n) option remember; local i; if n=1 then 2 else 2+add((-1)^(i+1)*binomial(A000905(n-i), i+1), i=1..n-1); fi; end;
|
|
CROSSREFS
|
Cf. A001660.
Equals A006719(n) - 1.
Cf. A134294.
Sequence in context: A003686 A086506 A109462 this_sequence A065296 A114895 A083685
Adjacent sequences: A000902 A000903 A000904 this_sequence A000906 A000907 A000908
|
|
KEYWORD
|
nonn,nice,easy
|
|
AUTHOR
|
njas
|
|
EXTENSIONS
|
The formula given by Lucas on p. 498 is slightly in error - see Maple program given here.
|
|
|
Search completed in 0.002 seconds
|