|
| |
|
|
A163210
|
|
Swinging Wilson quotients ((p-1)$ +(-1)^floor((p+2)/2))/p, p prime. Here '$' denotes the swinging factorial function (A056040).
|
|
7
| |
|
|
1, 1, 1, 3, 23, 71, 757, 2559, 30671, 1383331, 5003791, 245273927, 3362110459, 12517624987, 175179377183, 9356953451851, 509614686432899, 1938763632210843, 107752663194272623
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,4
|
|
|
REFERENCES
| Peter Luschny, "Divide, swing and conquer the factorial and the lcm{1,2,...,n}", preprint, April 2008.
|
|
|
LINKS
| Peter Luschny, Swinging Primes.
|
|
|
EXAMPLE
| The 5th prime is 11, (11-1)$ = 252, the remainder term is (-1)^floor((11+2)/2)=1. So the quotient (252+1)/11 = 23 is the 5th member of the sequence.
|
|
|
MAPLE
| swing := proc(n) option remember; if n = 0 then 1 elif irem(n, 2) = 1 then swing(n-1)*n else 4*swing(n-1)/n fi end:
WQ := proc(f, r, n) map(p->(f(p-1)+r(p))/p, select(isprime, [$1..n])) end:
A163210 := n -> WQ(swing, p->(-1)^iquo(p+2, 2), n);
|
|
|
CROSSREFS
| Cf. A163213, A002068, A163212, A163209, A007619, A007540.
Sequence in context: A121984 A107177 A096207 * A163211 A126335 A196649
Adjacent sequences: A163207 A163208 A163209 * A163211 A163212 A163213
|
|
|
KEYWORD
| nonn
|
|
|
AUTHOR
| Peter Luschny (peter(AT)luschny.de), Jul 24 2009
|
| |
|
|