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.
%I A127029 #8 Sep 04 2017 19:28:04 %S A127029 652,2608,5868,14370,22905,23325,28201,34218,45374,54295,55003,59266, %T A127029 66499,76750,87228,91311,95041,160874,169259,184867,192157,196681, %U A127029 197869,206495,206656,210532,210676,230491,251572,273117,289732,301417,311669,317780,321484 %N A127029 Let f(n) = exp(Pi*sqrt(n)); sequence gives numbers n such that f(n) - floor(f(n)) < 1/10^4. %t A127029 $MaxExtraPrecision = 1000; a = {}; Do[If[((Exp[Pi Sqrt[x]] - Floor[Exp[Pi Sqrt[x]]]) > 0) && ((Exp[Pi Sqrt[x]] - Floor[Exp[Pi Sqrt[x]]]) < 10^(-4)), AppendTo[a, x]], {x, 1, 20000}]; a %Y A127029 Cf. A035484, A127022, A127023, A127024, A127025, A127026, A127027, A127028, A127030. %K A127029 nonn %O A127029 1,1 %A A127029 _Artur Jasinski_, Jan 03 2007 %E A127029 a(5)-a(35) from _Jon E. Schoenfield_, Sep 04 2017