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 A040130 #10 Jul 08 2025 22:50:13 %S A040130 2,3,5,7,11,43,53,59,61,67,71,103,109,113,127,131,137,163,179,181,191, %T A040130 223,239,241,251,257,283,307,311,317,349,359,367,419,431,463,479,487, %U A040130 491,523,541,547,557,593,599,607 %N A040130 Primes p such that x^4 = 15 has a solution mod p. %H A040130 Vincenzo Librandi, <a href="/A040130/b040130.txt">Table of n, a(n) for n = 1..1000</a> %t A040130 ok [p_]:=Reduce[Mod[x^4 - 15, p]== 0, x, Integers]=!= False; Select[Prime[Range[180]], ok] (* _Vincenzo Librandi_, Sep 12 2012 *) %o A040130 (Magma) [p: p in PrimesUpTo(800) | exists(t){x : x in ResidueClassRing(p) | x^4 eq 15}]; // _Vincenzo Librandi_, Sep 12 2012 %K A040130 nonn,easy %O A040130 1,1 %A A040130 _N. J. A. Sloane_