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.

A062837 Numbers k such that k, 2*k+1, 3*k+1 are all squarefree.

This page as a plain text file.
%I A062837 #21 Feb 26 2024 01:24:49
%S A062837 2,3,6,7,10,11,14,15,19,23,26,30,34,35,38,39,42,43,46,47,51,55,59,66,
%T A062837 70,71,74,78,79,82,86,91,95,102,106,107,110,111,115,118,119,123,127,
%U A062837 131,134,138,142,143,146,151,154,155,159,167,170,174,178,179,182,186
%N A062837 Numbers k such that k, 2*k+1, 3*k+1 are all squarefree.
%C A062837 The asymptotic density of this sequence is (7/3) * Product_{p prime} (1 - 3/p^2) = (7/3) * A206256 = 0.292802955446... (Tsang, 1985). - _Amiram Eldar_, Feb 26 2024
%H A062837 Amiram Eldar, <a href="/A062837/b062837.txt">Table of n, a(n) for n = 1..10000</a>
%H A062837 Kai-Man Tsang, <a href="https://doi.org/10.1112/S0025579300011049">The distribution of r-tuples of square-free numbers</a>, Mathematika, Vol. 32, No. 2 (1985), pp. 265-275.
%t A062837 Select[Range[200],AllTrue[{#,2#+1,3#+1},SquareFreeQ]&] (* _Harvey P. Dale_, Oct 20 2014 *)
%o A062837 (PARI) j=[]; for(n=1,200, if(issquarefree(n) && issquarefree(2*n+1) && issquarefree(3*n+1),j=concat(j,n))); j
%Y A062837 Subsequence of A005117 and A117204.
%Y A062837 Cf. A206256.
%K A062837 nonn
%O A062837 1,1
%A A062837 _Jason Earls_, Jul 21 2001