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.

Showing 1-2 of 2 results.

A079286 a(n) = (3^n)! - (2^n)!.

Original entry on oeis.org

0, 4, 362856, 10888869450418352160767959680
Offset: 0

Views

Author

Cino Hilliard, Feb 08 2003

Keywords

Comments

Sum_{n>0} 1/a(n) = 0.25000275591...
The next term is too large to include.
The next term (a(4)) has 121 digits. - Harvey P. Dale, Jan 10 2024

Crossrefs

Programs

  • Mathematica
    Table[(3^n)!-(2^n)!,{n,0,4}] (* Harvey P. Dale, Jan 10 2024 *)
  • PARI
    atonfact(n) = {for(x=0, n, y = (3^x)!-(2^x)!; print1(y, ", "));}

Formula

a(n) = A079288(n) - A000722(n). - Michel Marcus, Jul 08 2024

A262187 a(n) = (3^n)! / n!.

Original entry on oeis.org

1, 6, 181440, 1814811575069725360128000000
Offset: 0

Views

Author

Altug Alkan, Sep 14 2015

Keywords

Comments

Next term is too large to include.

Examples

			For n = 2, a(n) = (3^2)! / (2)! = 181440.
		

Crossrefs

Programs

  • Magma
    [Factorial(3^n) / Factorial(n): n in [0..6]]; // Vincenzo Librandi, Sep 15 2015
  • Mathematica
    Table[(3^n)! / n!, {n, 0, 6}] (* Vincenzo Librandi, Sep 15 2015 *)
  • PARI
    a(n) = (3^n)! / n!;
    vector(5, n, a(n-1))
    

Formula

a(n) = A079288(n)/A000142(n).
Showing 1-2 of 2 results.