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.

A176585 Primes of the form n^3+Smallest square, (Smallest square >= n^3).

This page as a plain text file.
%I A176585 #4 Jun 23 2017 13:34:14
%S A176585 2,17,269,281233,1770217,1826609,2520841,3907529,7595017,8665471,
%T A176585 9828089,11280377,12259063,17235221,27654961,54008809,70583033,
%U A176585 75196799,85018949,87240233,106316057,111499057,168061561,176255669,201105409
%N A176585 Primes of the form n^3+Smallest square, (Smallest square >= n^3).
%C A176585 8+9=17, 5^3+12^2=269,..
%t A176585 r[n_]:=n^3;f[n_]:=r[n]+Ceiling[Sqrt[r[n]]]^2;Select[Table[f[n],{n,0,6!}],PrimeQ[ # ]&]
%t A176585 ssn3[n_]:=n^3+(Ceiling[Sqrt[n^3]])^2; Select[Array[ssn3,500],PrimeQ] (* _Harvey P. Dale_, Jun 23 2017 *)
%Y A176585 Cf. A065733, A075847, A077116, A176580, A176581, A176582, A176583, A176584
%K A176585 nonn
%O A176585 1,1
%A A176585 _Vladimir Joseph Stephan Orlovsky_, Apr 21 2010