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-1 of 1 results.

A101292 a(n) = n! + Sum_{i=1..n} i.

Original entry on oeis.org

1, 2, 5, 12, 34, 135, 741, 5068, 40356, 362925, 3628855, 39916866, 479001678, 6227020891, 87178291305, 1307674368120, 20922789888136, 355687428096153, 6402373705728171, 121645100408832190, 2432902008176640210, 51090942171709440231, 1124000727777607680253
Offset: 0

Views

Author

Parthasarathy Nambi, Dec 21 2004

Keywords

Comments

Called "factoriangular" numbers by Castillo. - N. J. A. Sloane, Aug 30 2016
The only Fibonacci numbers in this sequence are 1, 2, 5, 34. [Ruiz and Luca, verifying a conjecture of Castillo] - Eric M. Schmidt, Nov 07 2017

Examples

			a(3) = 3! + (1 + 2 + 3) = 12.
a(5) = 5! + (1 + 2 + 3 + 4 + 5) = 135.
		

Crossrefs

Cf. A275928.

Programs

  • Maple
    seq(n!+n*(n+1)/2,n=0..22); # Emeric Deutsch, Mar 12 2005
    a:= proc(n) option remember; `if`(n<3, [1,2,5][n+1],
          ((11*n^2+10*n-70)*a(n-1)-(34*n^2-81*n+60)*a(n-2)
           +(23*n-10)*(n-2)*a(n-3))/(11*n-24))
        end:
    seq(a(n), n=0..25); # Alois P. Heinz, Aug 30 2016
  • Mathematica
    Array[#! + # (# + 1)/2 &, 23, 0] (* Michael De Vlieger, Nov 12 2019 *)

Formula

a(n) = n! + n*(n+1)/2.

Extensions

More terms from Emeric Deutsch, Mar 12 2005
a(0)=1 prepended by Alois P. Heinz, Aug 30 2016
Showing 1-1 of 1 results.