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!)
A212636 Minimal m >= 1 such that floor((2*n - 1)!!/m) - 2 is prime. 4
1, 1, 3, 3, 8, 1, 1, 1, 5, 7, 19, 7, 5, 15, 7, 17, 5, 3, 9, 11, 63, 9, 5, 1, 53, 27, 51, 11, 3, 11, 13, 15, 17, 35, 1, 17, 21, 13, 139, 61, 3, 13, 1, 7, 147, 23, 123, 47, 41, 35, 11, 39, 69, 21, 123, 29, 27, 49, 3, 9, 37, 171, 57, 1, 31, 37, 5, 61, 27, 31, 53 (list; graph; refs; listen; history; text; internal format)
OFFSET
3,3
LINKS
EXAMPLE
(2*6-1)!! = 11!! = 11 * 9 * 7 * 5 * 3 * 1 = 10395. Floor(10395/1) - 2 = 10395 - 2 = 10393 = 19 * 547 is not prime, and floor(10395/2) - 2 = 5197 - 2 = 5195 = 5 * 1039 is not prime, but floor(10395/3) - 2 = 3465 - 2 = 3463 is prime, so a(6) = 3.
MAPLE
a:= proc(n) local m;
for m while not isprime(iquo(doublefactorial(2*n-1), m)-2)
do od; m
end:
seq(a(n), n=3..70); # Alois P. Heinz, Feb 18 2013
CROSSREFS
Sequence in context: A171543 A079073 A165507 * A282255 A164040 A154178
KEYWORD
nonn
AUTHOR
Vladimir Shevelev, Feb 14 2013
EXTENSIONS
More terms from Alois P. Heinz, Feb 18 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 24 07:44 EDT 2024. Contains 371922 sequences. (Running on oeis4.)