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.

A158623 Denominator of the reduced fraction A158620(n)/A158621(n).

Original entry on oeis.org

9, 18, 10, 45, 63, 28, 108, 135, 55, 198, 234, 91, 315, 360, 136, 459, 513, 190, 630, 693, 253, 828, 900, 325, 1053, 1134, 406, 1305, 1395, 496, 1584, 1683, 595, 1890, 1998, 703, 2223, 2340, 820, 2583, 2709, 946, 2970, 3105, 1081, 3384, 3528, 1225, 3825
Offset: 2

Views

Author

Jonathan Vos Post, Mar 23 2009

Keywords

Comments

A158620(n) = Product_{k=2..n} (k^3-1). A158621(n) = Product_{k=2..n} (k^3+1). A158622(n) is the numerator of the reduced fraction A158620(n)/A158621(n). A158623(n) is the denominator of the reduced fraction A158620(n)/A158621(n). The reduced fractions are 7/9, 13/18, 7/10, 31/45, 43/63, 19/28, 73/108, 91/135, 37/55, 133/198, ...

Examples

			a(2) = 9 = denominator of (2^3-1)/2^3+1 = 7/9. a(3) = 18 = denominator of ((2^3-1)*(3^3-1))/((2^3+1)*(3^3+1)) = (7 * 26)/ (9 * 28) = 182/252 = 13/18. a(4) = 10 = denominator of ((2^3-1)*(3^3-1)*(4^3-1))/((2^3+1)*(3^3+1)*(4^3+1)) = (7 * 26 * 63)/(9 * 28 * 65) = 11466/16380 = 7/10. a(5) = 45 = denominator of ((2^3-1)(3^3-1)(4^3-1)(5^3-1))/((2^3+1)(3^3+1)(4^3+1)(5^3+1)) = 1421784/2063880 = 31/45.
		

Crossrefs

Programs

Formula

Denominator of (Product_{k=2..n} (k^3-1)) / Product_{k=2..n} (k^3+1) = denominator of Product_{k=2..n} A068601(k)/A001093(k).
A158620(n)/A158621(n) = 2(n^2+n+1)/(3n(n+1)). Conjecture: a(n) = 3a(n-3) - 3a(n-6) + a(n-9), so trisections are A152996, A060544 and 3*A081266. - R. J. Mathar, Mar 27 2009
Empirical g.f.: -x^2*(x^8 - 2*x^5 + 9*x^4 + 18*x^3 + 10*x^2 + 18*x + 9) / ((x-1)^3*(x^2 + x + 1)^3). - Colin Barker, May 09 2013

Extensions

More terms from R. J. Mathar, Mar 27 2009

A153780 10 times pentagonal numbers: a(n) = 5*n*(3*n-1).

Original entry on oeis.org

0, 10, 50, 120, 220, 350, 510, 700, 920, 1170, 1450, 1760, 2100, 2470, 2870, 3300, 3760, 4250, 4770, 5320, 5900, 6510, 7150, 7820, 8520, 9250, 10010, 10800, 11620, 12470, 13350, 14260, 15200, 16170, 17170, 18200, 19260, 20350
Offset: 0

Views

Author

Omar E. Pol, Jan 01 2009

Keywords

Crossrefs

Programs

  • Mathematica
    Table[5*n*(3*n - 1), {n,0,25}] (* or *) LinearRecurrence[{3,-3,1},{0,10,50},25] (* G. C. Greubel, Aug 28 2016 *)
  • PARI
    a(n) = 5*n*(3*n-1); \\ Michel Marcus, Aug 28 2016

Formula

a(n) = 15*n^2 - 5*n = 10*A000326(n) = 5*A049450(n) = 2*A152734(n).
a(n) = 30*n + a(n-1) - 20 for n>0, a(0) = 0. - Vincenzo Librandi, Aug 03 2010
G.f.: 10*x*(1+2*x)/(1-x)^3. - Colin Barker, Feb 14 2012
From G. C. Greubel, Aug 28 2016: (Start)
a(n) = 3*a(n-1) - 3*a(n-2) + a(n-3).
E.g.f.: 5*x*(2 + 3*x)*exp(x). (End)
Showing 1-2 of 2 results.