cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A298881 a(0) = 0; for n>0, a(n) = 6*n!.

This page as a plain text file.
%I A298881 #20 Sep 08 2022 08:46:20
%S A298881 0,6,12,36,144,720,4320,30240,241920,2177280,21772800,239500800,
%T A298881 2874009600,37362124800,523069747200,7846046208000,125536739328000,
%U A298881 2134124568576000,38414242234368000,729870602452992000,14597412049059840000,306545653030256640000
%N A298881 a(0) = 0; for n>0, a(n) = 6*n!.
%H A298881 Vincenzo Librandi, <a href="/A298881/b298881.txt">Table of n, a(n) for n = 0..300</a>
%F A298881 E.g.f.: 6*x/(1-x).
%F A298881 a(n) = n*a(n-1) = 6*A000142(n) for n>0.
%t A298881 Join[{0}, 6 Range[25]!]
%o A298881 (Magma) [n eq 0 select 0 else 6*Factorial(n): n in [0..25]];
%o A298881 (GAP) Concatenation([0], List([1..25], n -> 6*Factorial(n))); # _Bruno Berselli_, Feb 13 2018
%o A298881 (PARI) a(n) = if (n, 6*n!, 0); \\ _Michel Marcus_, Feb 15 2018
%Y A298881 Cf. A274266.
%Y A298881 Cf. sequences of the type k*n!: A000142 (k=1), A052849 (k=2), A052560 (k=3), A052578 (k=4), A052648 (k=5), this sequence (k=6), A062098 (k=7), A159038 (k=8), A174183 (k=10).
%K A298881 nonn,easy
%O A298881 0,2
%A A298881 _Vincenzo Librandi_, Feb 13 2018
%E A298881 Edited by _Bruno Berselli_, Feb 13 2018