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!)
A189712 Numbers m such that for each prime p that divides m, there is a k(p) such that k(p) == 1 (mod p), k(p) divides m evenly, and m divides k(p)!/2 evenly. 0
30, 56, 60, 90, 105, 120, 132, 144, 168, 180, 210, 240, 252, 264, 280, 288, 306, 315, 336, 351, 360, 380, 396, 400, 420, 432, 480, 495, 504, 520, 525, 528, 540, 546, 552, 560, 576, 612, 616, 630, 660, 672, 702, 720, 735, 756, 760, 792, 800, 810, 840, 858, 864, 900, 918, 924, 960, 990, 992, 1008, 1040, 1050, 1053, 1056, 1080, 1092, 1100, 1104 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The order of every simple group must be a term of this sequence, so A001034 is a subsequence of this sequence. The Dahlke link shows the sequence with 72 and 112 (which are not in this sequence) added.
LINKS
PROG
(PARI) findk(p, n) = {for (k = 1, n, if (((k % p) == 1) && ((n % k) == 0) && ((k! % 2) == 0) && (((k!/2) % n) == 0), return (1)); ); return (0); }
isok(n) = {vp = factor(n)[, 1]~; for (i = 1, #vp, if (! findk(vp[i], n), return (0)); ); return (1); } \\ Michel Marcus, Aug 22 2013
CROSSREFS
Cf. A001034.
Sequence in context: A174071 A006315 A027578 * A029713 A154599 A048451
KEYWORD
nonn
AUTHOR
James V. Blowers, Apr 25 2011
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 10 10:39 EDT 2024. Contains 372377 sequences. (Running on oeis4.)