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!)
A187811 Numbers having at least one prime factor of form 4*k+3. 4
3, 6, 7, 9, 11, 12, 14, 15, 18, 19, 21, 22, 23, 24, 27, 28, 30, 31, 33, 35, 36, 38, 39, 42, 43, 44, 45, 46, 47, 48, 49, 51, 54, 55, 56, 57, 59, 60, 62, 63, 66, 67, 69, 70, 71, 72, 75, 76, 77, 78, 79, 81, 83, 84, 86, 87, 88, 90, 91, 92, 93, 94, 95, 96, 98, 99 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
A005091(a(n)) > 0. - Reinhard Zumkeller, Jan 07 2013
LINKS
FORMULA
a(n) ~ n. - Charles R Greathouse IV, Sep 01 2015
MATHEMATICA
pfQ[n_]:=AnyTrue[Transpose[FactorInteger[n]][[1]], Mod[#, 4]==3&]; Select[ Range[100], pfQ] (* The program uses the AnyTrue function from Mathematica version 10 *) (* Harvey P. Dale, Jan 26 2016 *)
PROG
(Haskell)
import Data.List (findIndices)
a187811 n = a187811_list !! (n-1)
a187811_list = map (+ 1) $ findIndices (> 0) a005091_list
-- Reinhard Zumkeller, Jan 07 2013
(PARI) is(n)=if(n%4==3, return(1)); my(f=factor(n)[, 1]%4); for(i=1, #f, if(f[i]==3, return(1))); 0 \\ Charles R Greathouse IV, Sep 01 2015
CROSSREFS
Cf. A072437 (complement); A002145, A009003.
Sequence in context: A005767 A085837 A176237 * A324696 A186348 A071822
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Jan 07 2013
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 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)