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.

A232765 Values of y solving x^2 = floor(y^2/3 + y).

This page as a plain text file.
%I A232765 #25 Dec 30 2014 13:12:13
%S A232765 0,1,4,9,28,73,144,409,1036,2025,5716,14449,28224,79633,201268,393129,
%T A232765 1109164,2803321,5475600,15448681,39045244,76265289,215172388,
%U A232765 543830113,1062238464,2996964769,7574576356,14795073225,41742334396,105500238889,206068786704,581395716793,1469428768108
%N A232765 Values of y solving x^2 = floor(y^2/3 + y).
%C A232765 The corresponding values of x are given by A232771.
%C A232765 a(n) + 3 gives the values of y solving x^2 = floor(y^2/3 - y), and yields the same values for x.
%C A232765 a(3n+1) are squares whose square roots are given by A005320.
%C A232765 Let b(n) equal the second differences of a(n) where b(1) = 2. Then, for n>0, b(3n-1) = b(3n-2) = 2* A001570(n+1);  b(3n)= 2*A011943(n);  and b(3n) = (b(3n+1) + b(3n-1))/2.
%F A232765 Empirical g.f.: -x^2*(x+1)*(x^2+x+1)^2 / ((x-1)*(x^6-14*x^3+1)). - _Colin Barker_, Dec 30 2014
%o A232765 (PARI) is(n)=issquare(n^2\3+n)
%o A232765 print1("0, 1");for(x=3,99,y=round(sqrt(3)*x-3/2);if(is(y),print1(", "y))) \\ _Charles R Greathouse IV_, Dec 09 2013
%Y A232765 Cf. A005320, A011943, A001570, A110293.
%K A232765 nonn
%O A232765 1,3
%A A232765 _Richard R. Forberg_, Nov 29 2013
%E A232765 a(23) corrected by _Colin Barker_, Dec 30 2014