login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A048631 Xfactorials - like factorials but use carryless GF(2)[ X ] polynomial multiplication. 4
1, 1, 2, 6, 24, 120, 272, 1904, 15232, 124800, 848640, 7507200, 39738368, 433441792, 2589116416, 30419859456, 486717751296, 8128101580800, 132557598294016, 1971862458400768, 30421253686034432, 512675443057623040 (list; graph; refs; listen; history; text; internal format)
OFFSET

0,3

COMMENTS

In formula X stands for the multiplication in a ring of GF(2)[ X ] polynomials

LINKS

Table of n, a(n) for n=0..21.

FORMULA

a(0) = 1, a(n) = n X a(n-1) (see the Maple function Xfactorial given below).

MAPLE

Xfactorial := proc(n); if(0 = n) then RETURN(1); else RETURN(Xmult(n, Xfactorial(n-1))); fi; end;

Xmult := proc(n, m) option remember; if(0 = n) then RETURN(0); else RETURN(XORnos(((n mod 2)*m), Xmult(floor(n/2), m*2))); fi; end;

CROSSREFS

Cf. A000142, A048720, A048632, A061922.

Sequence in context: A083267 A130480 A000804 * A189852 A189564 A178010

Adjacent sequences:  A048628 A048629 A048630 * A048632 A048633 A048634

KEYWORD

easy,nonn

AUTHOR

Antti Karttunen

STATUS

approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified May 22 14:21 EDT 2013. Contains 225551 sequences.