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.

A299375 Numbers k such that k * 12^k - 1 is prime.

This page as a plain text file.
%I A299375 #16 Nov 24 2024 04:01:06
%S A299375 1,6,43,175,821,910,1157,13748,27032,71761,229918
%N A299375 Numbers k such that k * 12^k - 1 is prime.
%C A299375 a(12) > 500000.
%H A299375 Steven Harvey, <a href="http://harvey563.tripod.com/GeneralizedWoodallPrimes.txt">Generalized Woodall Search</a>
%H A299375 Wikipedia, <a href="https://en.wikipedia.org/wiki/Woodall_number">Woodall number</a>
%t A299375 Select[Range[1, 10000], PrimeQ[n*12^n-1] &]
%o A299375 (PARI) for(n=1, 10000, if(isprime(n*12^n-1), print1(n", ")))
%o A299375 (Magma) [n: n in [1..10000] |IsPrime(n*12^n-1)];
%Y A299375 Numbers n such that n * b^n - 1 is prime: A008864 (b=1), A002234 (b=2), A006553 (b=3), A086661 (b=4), A059676 (b=5), A059675 (b=6), A242200 (b=7), A242201 (b=8), A242202 (b=9), A059671 (b=10), A299374 (b=11), this sequence (b=12), A299376 (b=13), A299377 (b=14), A299378 (b=15), A299379 (b=16), A299380 (b=17), A299381 (b=18), A299382 (b=19), A299383 (b=20).
%K A299375 nonn,more,hard
%O A299375 1,2
%A A299375 _Tim Johannes Ohrtmann_, Feb 08 2018