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.

A260560 Numbers n such that (n^37+1)/(n+1) is prime.

This page as a plain text file.
%I A260560 #15 Sep 08 2022 08:46:13
%S A260560 16,19,21,49,56,63,71,74,77,83,92,96,99,160,172,197,198,230,241,280,
%T A260560 283,415,425,448,490,520,627,691,735,784,803,829,842,853,871,872,893,
%U A260560 894,973,981,989,1043,1060,1061,1071,1179,1182,1203,1290,1299,1317,1370,1389
%N A260560 Numbers n such that (n^37+1)/(n+1) is prime.
%H A260560 Tim Johannes Ohrtmann, <a href="/A260560/b260560.txt">Table of n, a(n) for n = 1..10000</a>
%t A260560 Select[Range[1, 10000], PrimeQ[(#^37 + 1)/(# + 1)] &]
%o A260560 (PARI) for(n=1,10000, if(isprime((n^37+1)/(n+1)), print1(n,", ")))
%o A260560 (Magma) [n: n in [1..10000] |IsPrime((n^37 + 1) div (n + 1))]
%Y A260560 Cf. A055494, A246392, A250174, A250178, A250181, A250185, A250187, A250193, A260558-A260573.
%K A260560 nonn
%O A260560 1,1
%A A260560 _Tim Johannes Ohrtmann_, Jul 29 2015