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.

A096783 Numbers n such that n, n+1, n+2, n+3, n+4 are all of the form x^2+2*y^2 for nonnegative x, y.

This page as a plain text file.
%I A096783 #6 Mar 28 2015 22:16:42
%S A096783 0,96,800,2400,3200,3648,4096,4800,6272,7296,9600,18272,19648,20000,
%T A096783 20672,23648,28224,28800,29472,31424,34848,36896,37472,43072,48672,
%U A096783 50272,51200,53600,53824,55072,57696,59648,62848,64800,66048,69824
%N A096783 Numbers n such that n, n+1, n+2, n+3, n+4 are all of the form x^2+2*y^2 for nonnegative x, y.
%e A096783 96=8^2+2*4^2, 97=5^2+2*6^2, 98 = 0^2+2*7^2,99=9^2+2*3^2=7^2+2*5^2,100=10^2+2*0^2
%t A096783 f[n_] := f[n_] = Block[{y = 0}, While[x = Sqrt[n - 2y^2]; !IntegerQ[x] && x >= 0, y++ ]; If[x \[Element] Reals, 1, 0]]; Select[ Range[0, 76895], f[ # ] == f[ # + 1] == f[ # + 2] == f[ # + 3] == f[ # + 4] == 1 &] (* _Robert G. Wilson v_, Aug 20 2004 *)
%K A096783 nonn
%O A096783 1,2
%A A096783 _John L. Drost_, Aug 16 2004
%E A096783 More terms from _Robert G. Wilson v_, Aug 20 2004