OFFSET
0,6
COMMENTS
Odd composite numbers with placeholders for primes between them.
LINKS
Ivan V. Morozov, On Quotients of a More General Theorem of Wilson, arXiv:2505.16201 [math.NT], 2025. See denominators of Z+ p. 9.
FORMULA
a(n) = 2*n - A128059(n).
a(0) = -1, a(n) = gcd(2*n-1, (2*n-2)!), n > 0. - Wesley Ivan Hurt, Jan 05 2014
MAPLE
A128060 := proc(n): 2*n - numer((2*n-1)^2/(2*(2*n)!)) end: seq(A128060(n), n=0..62); # Johannes W. Meijer, Oct 25 2012
# Alternative:
A128060 := proc(n) local n1: n1:=2*n-1: if type(n1, prime) then A128060(n) := 1 else A128060(n) := n1 fi: end: seq(A128060(n), n=0..62); # Johannes W. Meijer, Oct 25 2012
MATHEMATICA
Table[2n - Numerator[(2n - 1)^2/(2(2n)!)], {n, 0, 74}] (* Alonso del Arte, Jan 05 2014 *)
CROSSREFS
KEYWORD
easy,sign
AUTHOR
Paul Barry, Feb 13 2007
EXTENSIONS
More terms from Michel Marcus, May 23 2025
STATUS
approved
