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!)
A162685 Positive integers that are not prime powers and are not divisible by any consecutive primes. 1
10, 14, 20, 21, 22, 26, 28, 33, 34, 38, 39, 40, 44, 46, 50, 51, 52, 55, 56, 57, 58, 62, 63, 65, 68, 69, 74, 76, 80, 82, 85, 86, 87, 88, 91, 92, 93, 94, 95, 98, 99, 100, 104, 106, 110, 111, 112, 115, 116, 117, 118, 119, 122, 123, 124, 129, 130, 133, 134, 136, 141, 142 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
220 is factored as 2^2 * 5 * 11. Since both 2 and 5 are not consecutive primes, and 5 and 11 are not consecutive primes (2 and 5 are separated by 3, and 5 and 11 are separated by 7), then 220 is in the sequence.
MAPLE
isA162685 := proc(n) local pfs, i; pfs := numtheory[factorset](n) ; if nops(pfs) <= 1 then RETURN(false) ; else pfs := sort(convert(pfs, list)) ; for i from 2 to nops(pfs) do if op(i, pfs) = nextprime(op(i-1, pfs)) then RETURN(false): fi; od: RETURN(true) ; fi; end: A162685 := proc(n) local a; if n = 1 then 10; else for a from procname(n-1)+1 do if isA162685(a) then RETURN(a) ; fi; od: fi; end: seq(A162685(n), n=1..100) ; # R. J. Mathar, Jul 13 2009
MATHEMATICA
q[n_] := Module[{f = FactorInteger[n]}, Length[f] > 1 && SequenceCount[f[[;; , 1]], {p1_, p2_} /; p2 == NextPrime[p1]] == 0]; Select[Range[150], q] (* Amiram Eldar, Apr 10 2021 *)
CROSSREFS
Sequence in context: A069900 A073492 A073493 * A272374 A362982 A251727
KEYWORD
nonn
AUTHOR
Leroy Quet, Jul 10 2009
EXTENSIONS
More terms from R. J. Mathar, Jul 13 2009
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 March 28 10:55 EDT 2024. Contains 371241 sequences. (Running on oeis4.)