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!)
A107746 Numbers n such that the least prime factor of 6*n+1 > the least prime factor of 6*n-1, A107744(n) > A107745(n). 3
1, 2, 3, 5, 6, 7, 10, 11, 12, 13, 16, 17, 18, 20, 21, 23, 25, 26, 27, 30, 31, 32, 33, 35, 36, 37, 38, 40, 41, 45, 46, 47, 48, 51, 52, 55, 56, 58, 61, 62, 63, 66, 68, 70, 71, 72, 73, 76, 77, 81, 83, 86, 87, 88, 90, 91, 95, 96, 97, 100, 101, 102, 103, 105, 106, 107, 110, 111 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Complement of A107747 in the positive integers.
Contains A016861. - Robert Israel, Oct 23 2015
LINKS
MAPLE
lpf:= n -> min(numtheory:-factorset(n)):
select(n -> lpf(6*n+1) > lpf(6*n-1), [$1..1000]); # Robert Israel, Oct 23 2015
MATHEMATICA
Select[Range@ 111, FactorInteger[6 # + 1][[1, 1]] > FactorInteger[6 # - 1][[1, 1]] &] (* Michael De Vlieger, Oct 23 2015 *)
PROG
(PARI) isok(n) = vecmin(factor(6*n+1)[, 1]) > vecmin(factor(6*n-1)[, 1]); \\ Michel Marcus, Feb 04 2014
CROSSREFS
Sequence in context: A367861 A214432 A110086 * A024899 A114518 A066940
KEYWORD
nonn
AUTHOR
Zak Seidov, May 23 2005
EXTENSIONS
Comments corrected and (at the suggestion of Michel Marcus) moved to Crossrefs by Jason Kimberley, Oct 23 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 April 19 18:58 EDT 2024. Contains 371798 sequences. (Running on oeis4.)