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 A247467 #14 Feb 16 2025 08:33:23 %S A247467 4,5,7,8,10,11,14,17,35,41,50,59,89,136,164,205,224,283,763,1034,1253, %T A247467 1630,1820,3199,3800,5080,6124,17306,17398,20768,34033,43607 %N A247467 Numbers n such that n!3 + 3^6 is prime. %C A247467 Large terms correspond to probable primes. %C A247467 a(33) > 50000. %H A247467 Henri & Renaud Lifchitz, <a href="http://www.primenumbers.net/prptop/searchform.php?form=n!3+729&action=Search">PRP Records. Search for n!3+729</a> %H A247467 Joe McLean, <a href="http://web.archive.org/web/20091027034731/http://uk.geocities.com/nassarawa%40btinternet.com/probprim2.htm">Interesting Sources of Probable Primes</a> %H A247467 OpenPFGW Project, <a href="http://sourceforge.net/projects/openpfgw/">Primality Tester</a> %H A247467 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/Multifactorial.html">Multifactorial</a> %e A247467 11!3+729 = 11*8*5*2+729 = 1609 is prime, so 11 is in the sequence. %t A247467 MultiFactorial[n_, k_] := If[n < 1, 1, If[n < k + 1, n, n*MultiFactorial[n - k, k]]]; %t A247467 lst={};Do[If[PrimeQ[MultiFactorial[n, 3] + 729], AppendTo[lst, n]], {n, 100}];lst %Y A247467 Cf. A007661, A037082, A084438, A243078. %K A247467 nonn,more %O A247467 1,1 %A A247467 _Robert Price_, Sep 17 2014