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.

A228184 Numbers k such that k^2 + k + 41 is semiprime.

This page as a plain text file.
%I A228184 #18 May 19 2021 22:09:27
%S A228184 40,41,44,49,56,65,76,81,82,84,87,89,91,96,102,104,109,117,121,122,
%T A228184 123,126,127,130,136,138,140,143,147,155,159,161,162,163,164,170,172,
%U A228184 173,178,184,185,186,187,190,201,204,205,207,208,209,213,215,216,217,218
%N A228184 Numbers k such that k^2 + k + 41 is semiprime.
%C A228184 Subsequence of A007634. Numbers in A007634 but not in here are 420, 431, 491, 492, 514, 533, 573, etc. (A097822). - _R. J. Mathar_, Aug 17 2013
%H A228184 Shyam Sunder Gupta, <a href="/A228184/b228184.txt">Table of n, a(n) for n = 1..4760</a>
%e A228184 a(3) = 44 is in the sequence because 44^2 + 44 + 41 = 43*47 is semiprime.
%t A228184 a = {}; Do[
%t A228184 If[PrimeOmega[x^2 + x + 41] == 2, AppendTo[a, x]], {x, 1, 500}]; a
%Y A228184 Cf. A002837, A001358, A007634.
%K A228184 nonn,less
%O A228184 1,1
%A A228184 _Shyam Sunder Gupta_, Aug 15 2013