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 A146360 #16 Mar 30 2020 08:42:34 %S A146360 193,281,1861,1933,2089,2141,2437,2741,2837,3037,3121,3413,4001,4637, %T A146360 4877,5821,6653,7673,8117,10069,10273,10457,11197,11549,11821,12409, %U A146360 13037,14653,15061,15077,18661,20549,22921,23117,24169,25621,28837,35597,35869,36389,38569 %N A146360 Primes p such that continued fraction of (1 + sqrt(p))/2 has period 15: primes in A146338. %H A146360 Amiram Eldar, <a href="/A146360/b146360.txt">Table of n, a(n) for n = 1..2000</a> %p A146360 A146326 := proc(n) if not issqr(n) then numtheory[cfrac]( (1+sqrt(n))/2, 'periodic','quotients') ; nops(%[2]) ; else 0 ; fi; end: isA146360 := proc(n) RETURN(isprime(n) and A146326(n) = 15) ; end: for n from 2 to 30000 do if isA146360(n) then printf("%d,\n",n) ; fi; od: # _R. J. Mathar_, Sep 06 2009 %t A146360 Select[Prime[Range[1500]],Length[ContinuedFraction[(Sqrt[#]+1)/2][[2]]] == 15&] (* _Harvey P. Dale_, Aug 16 2014 *) %Y A146360 Cf. A000290, A050950-A050969, A078370, A146326-A146345, A146348-A146360. %K A146360 nonn %O A146360 1,1 %A A146360 _Artur Jasinski_, Oct 30 2008 %E A146360 8539 removed by _R. J. Mathar_, Sep 06 2009 %E A146360 More terms from _Amiram Eldar_, Mar 30 2020