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.

A187808 a(n) = |{0<=k n(n-k)-1, n(n+k)-1 are all prime}|.

This page as a plain text file.
%I A187808 #16 Jun 02 2025 03:59:44
%S A187808 0,1,1,2,1,3,1,2,1,3,2,3,1,4,1,4,1,3,2,5,4,4,2,4,1,4,2,5,1,4,2,4,2,6,
%T A187808 2,5,4,4,2,5,1,7,1,7,5,3,2,4,2,4,3,6,3,6,4,7,4,8,2,9,2,8,3,2,3,7,4,7,
%U A187808 1,7,4,7,1,7,4,9,7,8,2,9,3,6,2,6,3,7,2,8,3,7,4,6,8,9,4,6,3,9,5,8
%N A187808 a(n) = |{0<=k<n: 2k+3, n(n-k)-1, n(n+k)-1 are all prime}|.
%C A187808 Conjecture: a(n)>0 for all n>1. Moreover, if n>5 is different from 9, 191, 329, 641, 711, 979, then 2k-3, 2k+3, n(n-k)-1, n(n+k)-1 are all prime for some 0<k<n.
%C A187808 Zhi-Wei Sun also made the following conjectures:
%C A187808 (1) For any integer n>101 there is an integer 0<k<n such that kn-1 is a Sophie Germain prime.
%C A187808 (2) For each n=128,129,... there is an integer 0<k<n with kn-1 and kn+1 both prime.
%H A187808 Zhi-Wei Sun, <a href="/A187808/b187808.txt">Table of n, a(n) for n = 1..10000</a>
%H A187808 Zhi-Wei Sun, <a href="http://arxiv.org/abs/1211.1588">Conjectures involving primes and quadratic forms</a>, arXiv:1211.1588.
%e A187808 a(25) = 1 since 2*17+3 = 37, 25(25-17)-1 = 199, and 25(25+17)-1 = 1049 are all prime.
%t A187808 a[n_]:=a[n]=Sum[If[PrimeQ[2k+3]==True&&PrimeQ[n(n-k)-1]==True&&PrimeQ[n(n+k)-1]==True,1,0],{k,0,n-1}]
%t A187808 Do[Print[n," ",a[n]],{n,1,100}]
%Y A187808 Cf. A185636, A086686, A034693.
%K A187808 nonn
%O A187808 1,4
%A A187808 _Zhi-Wei Sun_, Jan 07 2013