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 A180263 #27 Sep 08 2022 08:45:54 %S A180263 1,7,13,17,21,23,27,31,33,37,41,43,47,53,55,57,63,67,73,75,77,81,83, %T A180263 87,89,91,93,97,99,103,105,107,109,111,113,115,117,119,123,125,127, %U A180263 129,133,135,137,143,147,149,151,153,155,157,161,163,167,173,177,179,183,185 %N A180263 Odd k such that (k^2 + 1)/2 is not prime. %H A180263 Harvey P. Dale, <a href="/A180263/b180263.txt">Table of n, a(n) for n = 1..2000</a> %e A180263 a(2)=7: (7^2 + 1)/2 = 25, which is not prime, so 7 is in the sequence. %e A180263 (9^2 + 1)/2 = 41, which is prime, so 9 is not in the sequence. %t A180263 a={};For[i=1,i<100,i=i+2,If[PrimeQ[(i^2+1)/2],0,AppendTo[a,i]]]Print[a] %t A180263 Select[Range[1,201,2],!PrimeQ[(#^2+1)/2]&] (* _Harvey P. Dale_, Jan 07 2016 *) %o A180263 (Magma) [ n: n in [1..200 by 2] | not IsPrime((n^2+1) div 2) ]; %o A180263 (PARI) isok(n) = (n%2) && !isprime((n^2 + 1)/2); \\ _Michel Marcus_, Nov 23 2018 %Y A180263 Cf. A027862 (primes of the form (n^2+1)/2). %K A180263 nonn %O A180263 1,2 %A A180263 _Alex Meiburg_, Aug 21 2010 %E A180263 More terms from _Vincenzo Librandi_, Nov 18 2010 %E A180263 Example clarified by _Harvey P. Dale_, Jan 07 2016