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.

User: Renzo Remotti

Renzo Remotti's wiki page.

Renzo Remotti has authored 2 sequences.

A317637 a(n) = n*(n+1)*(n+3).

Original entry on oeis.org

0, 8, 30, 72, 140, 240, 378, 560, 792, 1080, 1430, 1848, 2340, 2912, 3570, 4320, 5168, 6120, 7182, 8360, 9660, 11088, 12650, 14352, 16200, 18200, 20358, 22680, 25172, 27840, 30690, 33728, 36960, 40392, 44030, 47880, 51948, 56240, 60762, 65520, 70520, 75768, 81270, 87032
Offset: 0

Author

Renzo Remotti, Aug 02 2018

Keywords

Crossrefs

Cf. A077414.

Programs

  • Mathematica
    Table[n*(n + 1)*(n + 3), {n, 0, 43}] (* Giovanni Resta, Aug 10 2018 *)

Formula

a(n) = 2*A077414(n+1).
Sum_{n>=1} 1/a(n) = 7/36. - Amiram Eldar, Oct 07 2020
Sum_{n>=1} (-1)^(n+1)/a(n) = 2*log(2)/3 - 13/36. - Amiram Eldar, Feb 22 2022

A182287 If n = p*10^i + q*10^(i-1) + r*10^(i-2) + ... in decimal notation, then a(n) = p!*10^i + q!*10^(i-1) + r!*10^(i-2)+ ... .

Original entry on oeis.org

1, 1, 2, 6, 24, 120, 720, 5040, 40320, 362880, 11, 11, 12, 16, 34, 130, 730, 5050, 40330, 362890, 21, 21, 22, 26, 44, 140, 740, 5060, 40340, 362900, 61, 61, 62, 66, 84, 180, 780, 5100, 40380, 362940, 241, 241, 242, 246, 264, 360, 960, 5280, 40560, 363120
Offset: 0

Author

Renzo Remotti, Apr 23 2012

Keywords

Examples

			a(1)=1 because 1!*10^0=1, a(15)=130 because 1!*10^1+5!*10^0=130.
		

Crossrefs

Programs

  • Magma
    [n eq 0 select 1 else &+[Factorial(Reverse(Intseq(n))[k])*10^(#Intseq(n)-k): k in [1..#Intseq(n)]]: n in [0..50]]; // Bruno Berselli, May 15 2012

Extensions

Offset changed from 1 to 0 by Bruno Berselli, May 16 2012