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!)
A092972 Row 7 of array in A288580. 7
1, 1, 2, 3, -12, -10, -6, -49, -48, -90, -120, 1320, 1080, 624, 9604, 9360, 17280, 22440, -403920, -328320, -187200, -4235364, -4118400, -7551360, -9694080, 242352000, 196335360, 111196800, 3320525376, 3224707200, 5890060800, 7512912000, -240413184000, -194372006400, -109640044800 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
REFERENCES
F. Smarandache, Back and Forth Factorials, Arizona State Univ., Special Collections, 1972.
LINKS
J. Dezert, ed., Smarandacheials (1), Mathematics Magazine for Grades 1-12, No. 4, 2004.
J. Dezert, ed., Smarandacheials (2), Mathematics Magazine for Grades 1-12, No. 4, 2004.
FORMULA
a(n, k) = !n!_k = Prod_{i=0, 1, 2, .., floor(2n/k)}_{0<|n-i*k|<=n} (n-i*k) = n(n-k)(n-2k)(n-3k)... . k=7.
MAPLE
T:=proc(n, k) local i, p;
p:=1;
for i from 0 to floor(2*n/k) do
if n-k*i <> 0 then p:=p*(n-k*i) fi; od:
p;
end;
r:=k->[seq(T(n, k), n=0..60)]; r(7); # N. J. A. Sloane, Jul 03 2017
PROG
(PARI) a(n, k)=prod(j=0, (2*n)\k, if(n-k*j==0, 1, n-k*j))
CROSSREFS
Sequence in context: A104038 A112979 A225723 * A334914 A261576 A081526
KEYWORD
sign
AUTHOR
Paul D. Hanna, M.L. Perez and Amarnath Murthy, Mar 27 2004
EXTENSIONS
Entry revised by N. J. A. Sloane, Jul 03 2017
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 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)