cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A001660 Hypotenusal numbers.

This page as a plain text file.
%I A001660 M1706 N0675 #23 Oct 12 2015 23:05:16
%S A001660 1,1,2,6,36,876,408696,83762796636,3508125906207095591916,
%T A001660 6153473687096578758445014683368786661634996,
%U A001660 18932619208894981833333582059033329370801260096062214926751788496235698477988081702676
%N A001660 Hypotenusal numbers.
%D A001660 N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
%D A001660 N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
%D A001660 J. J. Sylvester and M. J. Hammond, On Hamilton's numbers, Phil. Trans. Roy. Soc., 178 (1887), 285-312.
%H A001660 E. Lucas, <a href="http://gallica.bnf.fr/ark:/12148/bpt6k29021h">Théorie des Nombres</a>, Gauthier-Villars, Paris, 1891, Vol. 1, p. 496.
%H A001660 E. Lucas, <a href="/A000904/a000904.pdf">Théorie des Nombres</a>, Gauthier-Villars, Paris, 1891, Vol. 1. [Annotated scan of pages 488-499 only]
%t A001660 h[1] = 2; h[n_] := h[n] = 2+Sum[(-1)^(i+1)*Product[h[n-i]-k, {k, 0, i}]/(i+1)!, {i, 1, n-1}]; a[0] = 1; a[n_] := h[n+1] - h[n]; Table[a[n], {n, 0, 10}] (* _Jean-François Alcover_, Dec 05 2013 *)
%Y A001660 First differences of A000905.
%K A001660 nonn,easy,nice
%O A001660 0,3
%A A001660 _N. J. A. Sloane_