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.

A127880 Numbers x for which x^4 + 4x^3 + 12x^2 + 24x + 24 is prime.

This page as a plain text file.
%I A127880 #14 Apr 30 2018 17:16:01
%S A127880 43,55,103,115,223,307,319,379,403,487,505,607,643,715,757,763,775,
%T A127880 799,883,925,979,1063,1069,1135,1147,1165,1189,1279,1309,1369,1543,
%U A127880 1567,1585,1627,1693,1729,1783,1813,1819,1855,1903,1939,1945,2083,2149,2155
%N A127880 Numbers x for which x^4 + 4x^3 + 12x^2 + 24x + 24 is prime.
%C A127880 Generating polynomial is Schur's polynomial of 4-degree. Schur's polynomials n degree are n-th first term of series expansion of e^x function. All polynomials are non-reducible and belonging to the An alternating Galois transitive group if n is divisible by 4 or to Sn symmetric Galois Group in other case (proof Schur, 1930).
%H A127880 G. C. Greubel, <a href="/A127880/b127880.txt">Table of n, a(n) for n = 1..5000</a>
%p A127880 select(x->isprime(x^4+4*x^3+12*x^2+24*x+24),[$1..3000]); # _Muniru A Asiru_, Apr 30 2018
%t A127880 a = {}; Do[If[PrimeQ[24 + 24 x + 12 x^2 + 4 x^3 + x^4], AppendTo[a, x]], {x, 1, 1000}]; a
%o A127880 (PARI) isok(x) = isprime(x^4 + 4*x^3 + 12*x^2 + 24*x + 24); \\ _Michel Marcus_, Apr 30 2018
%o A127880 (GAP) Filtered([1..3000],x->IsPrime(x^4+4*x^3+12*x^2+24*x+24)); # _Muniru A Asiru_, Apr 30 2018
%Y A127880 Cf. A127873, A127874, A127875, A127876, A127877, A127878, A127879, A127881, A127882, A127883.
%K A127880 nonn
%O A127880 1,1
%A A127880 _Artur Jasinski_, Feb 04 2007