login
Union of p-1, 2p-1 and 3p-1 where p is a prime (without repetition).
2

%I #18 Apr 30 2019 05:02:26

%S 1,2,3,4,5,6,8,9,10,12,13,14,16,18,20,21,22,25,28,30,32,33,36,37,38,

%T 40,42,45,46,50,52,56,57,58,60,61,66,68,70,72,73,78,81,82,85,86,88,92,

%U 93,96,100,102,105,106,108,110,112,117,121,122,126,128,130

%N Union of p-1, 2p-1 and 3p-1 where p is a prime (without repetition).

%H Nathaniel Johnston, <a href="/A196127/b196127.txt">Table of n, a(n) for n = 1..10000</a>

%p lim:=70: S:={}: p:=1: for n from 1 to lim do p:=nextprime(p): S := S union {p-1,2*p-1,3*p-1}: od: op(1..lim,S); # _Nathaniel Johnston_, Sep 28 2011

%t With[{upto=130},Select[{#-1,2#-1,3#-1}&/@Prime[Range[PrimePi[upto]+1]]//Flatten//Union,#<=upto&]] (* _Harvey P. Dale_, Apr 22 2016 *) (* or *)

%t Select[Range@130, Or @@ PrimeQ[(#+1)/{1,2,3}] &] (* _Giovanni Resta_, Apr 30 2019 *)

%Y Cf. A006093, A076274.

%K nonn,easy

%O 1,2

%A _Juri-Stepan Gerasimov_, Sep 28 2011

%E Entries checked by _R. J. Mathar_, Sep 28 2011