The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A259548 Numbers divisible only by primes of the form 6*m-1. 3
1, 5, 11, 17, 23, 25, 29, 41, 47, 53, 55, 59, 71, 83, 85, 89, 101, 107, 113, 115, 121, 125, 131, 137, 145, 149, 167, 173, 179, 187, 191, 197, 205, 227, 233, 235, 239, 251, 253, 257, 263, 265, 269, 275, 281, 289, 293, 295, 311, 317, 319, 347, 353, 355, 359, 383 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
EXAMPLE
275 is in sequence because 275 = 5*5*11, where 5 = 6-1 and 11 = 6*2-1.
MATHEMATICA
okQ[n_] := n==1 || And @@ (Mod[#, 6]==5& /@ FactorInteger[n][[All, 1]]); Select[Range[400], okQ] (* Jean-François Alcover, Jul 02 2015 *)
PROG
(Magma) [n: n in [1..400] | forall{d: d in PrimeDivisors(n) | d mod 6 eq 5}];
(PARI) list(lim)=my(v=List([1]), mn, mx, t); forprime(p=5, lim\=1, if(p%6==5, listput(v, p))); if(lim<25, return(Vec(v))); forprime(p=5, sqrtint(lim), if(p%6<5, next); mx=1; while(v[mx+1]*p<=lim, for(i=mn=mx+1, mx=#v, t=p*v[i]; if(t>lim, break); listput(v, t)))); Set(v) \\ Charles R Greathouse IV, Jan 11 2018
CROSSREFS
Subsequence of A007310.
Cf. A004611 (numbers divisible only by primes of the form 6*m+1), A007528.
Sequence in context: A285127 A157847 A348934 * A341449 A314228 A314229
KEYWORD
nonn
AUTHOR
Bruno Berselli, Jun 30 2015
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 12 22:06 EDT 2024. Contains 372495 sequences. (Running on oeis4.)