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

A200993 Triangular numbers, T(m), that are two-thirds of another triangular number; T(m) such that 3*T(m) = 2*T(k) for some k.

Original entry on oeis.org

0, 10, 990, 97020, 9506980, 931587030, 91286021970, 8945098566040, 876528373449960, 85890835499530050, 8416425350580494950, 824723793521388975060, 80814515339745539060940, 7918997779501541438997070, 775980967875811315482651930, 76038215854050007375860892080
Offset: 0

Views

Author

Charlie Marion, Dec 15 2011

Keywords

Comments

For n>1, a(n) = 98*a(n-1) - a (n-2) + 10. In general, for m>0, let b(n) be those triangular numbers such that for some triangular number c(n), (m+1)*b(n) = m*c(n). Then b(0) = 0, b(1)= A014105(m) and for n>1, b(n) = 2*A069129(m+1)*b(n-1) - b(n-2) + A014105(m).
Further, c(0) = 0, c(1) = A000384(m+1) and for n>1, c(n) = 2*A069129(m+1)*c(n-1) - c(n-2) + A000384(m+1).

Examples

			3*0 = 2*0.
3*10 = 2*15.
3*990 = 2*1485.
3*97020 = 2*145530.
		

Crossrefs

Programs

  • Magma
    m:=30; R:=PowerSeriesRing(Integers(), m); [0] cat Coefficients(R!(10*x/((1-x)*(x^2-98*x+1)))); // G. C. Greubel, Jul 15 2018
  • Mathematica
    LinearRecurrence[{99,-99,1},{0,10,990},20] (* Harvey P. Dale, Feb 25 2018 *)
  • PARI
    concat(0, Vec(10*x/((1-x)*(1-98*x+x^2)) + O(x^40))) \\ Colin Barker, Mar 02 2016
    

Formula

G.f. 10*x / ((1-x)*(x^2-98*x+1)). - R. J. Mathar, Dec 20 2011
a(n) = 99*a(n-1)-99*a(n-2)+a(n-3) for n>2. - Colin Barker, Mar 02 2016
a(n) = (-10+(5-2*sqrt(6))*(49+20*sqrt(6))^(-n)+(5+2*sqrt(6))*(49+20*sqrt(6))^n)/96. - Colin Barker, Mar 07 2016

A200994 Triangular numbers, T(m), that are three-halves of another triangular number; T(m) such that 2*T(m) = 3*T(k) for some k.

Original entry on oeis.org

0, 15, 1485, 145530, 14260470, 1397380545, 136929032955, 13417647849060, 1314792560174940, 128836253249295075, 12624638025870742425, 1237085690282083462590, 121221773009618308591410, 11878496669252312158495605, 1163971451813716973223977895
Offset: 0

Views

Author

Charlie Marion, Feb 15 2012

Keywords

Comments

For n > 1, a(n) = 98*a(n-1) - a(n-2) + 15. In general, for m>0, let b(n) be those triangular numbers such that for some triangular number c(n), (m+1)*b(n) = m*c(n). Then b(0) = 0, b(1) = A014105(m) and for n > 1, b(n) = 2*A069129(m+1)*b(n-1) - b(n-2) + A014105(m). Further, c(0) = 0, c(1) = A000384(m+1) and for n>1, c(n) = 2*A069129(m+1)*c(n-1) - c(n-2) + A000384(m+1).

Examples

			2*0 = 3*0.
2*15 = 3*10.
2*1485 = 3*990.
2*145530 = 3*97020.
		

Crossrefs

Programs

  • Magma
    m:=25; R:=PowerSeriesRing(Integers(), m); [0] cat Coefficients(R!(15*x/((1-x)*(1-98*x+x^2)))); // G. C. Greubel, Jul 15 2018
  • Mathematica
    LinearRecurrence[{99, -99, 1}, {0, 15, 1485}, 20] (* T. D. Noe, Feb 15 2012 *)
  • PARI
    concat(0, Vec(15*x/((1-x)*(1-98*x+x^2)) + O(x^20))) \\ Colin Barker, Mar 02 2016
    

Formula

From Colin Barker, Mar 02 2016: (Start)
a(n) = 99*a(n-1) - 99*a(n-2) + a(n-3) for n>2.
G.f.: 15*x / ((1-x)*(1-98*x+x^2)). (End)
a(n) = (-10+(5-2*sqrt(6))*(49+20*sqrt(6))^(-n)+(5+2*sqrt(6))*(49+20*sqrt(6))^n)/64. - Colin Barker, Mar 03 2016

A200998 Triangular numbers, T(m), that are three-quarters of another triangular number: T(m) such that 4*T(m)=3*T(k) for some k.

Original entry on oeis.org

0, 21, 4095, 794430, 154115346, 29897582715, 5799976931385, 1125165627105996, 218276331681631860, 42344483180609474865, 8214611460706556491971, 1593592278893891349967530, 309148687493954215337208870, 59973251781548223884068553271
Offset: 0

Views

Author

Charlie Marion, Dec 20 2011

Keywords

Comments

For n>1, a(n) = 194*a(n-1) - a (n-2) + 21. See A200993 for generalization.

Examples

			4*0 = 3*0.
4*21 = 3*28.
4*4095 = 3*5640.
4*794430 = 3*1059240.
		

Crossrefs

Programs

  • Magma
    I:=[0,21]; [n le 2 select I[n] else  194*Self(n-1) - Self(n-2) + 21: n in [1..20]]; // Vincenzo Librandi, Mar 03 2016
  • Mathematica
    LinearRecurrence[{195, -195, 1}, {0, 21, 4095}, 30] (* Vincenzo Librandi, Mar 03 2016 *)
  • PARI
    concat(0, Vec(21/(1 - 195*x + 195*x^2 - x^3) + O(x^99))) \\ Charles R Greathouse IV, Dec 20 2011
    

Formula

G.f.: (21*x)/(1 - 195*x + 195*x^2 - x^3).
From Colin Barker, Mar 02 2016: (Start)
a(n) = 195*a(n-1)-195*a(n-2)+a(n-3) for n>2.
a(n) = ((97+56*sqrt(3))^(-n)*(-1+(97+56*sqrt(3))^n)*(-7+4*sqrt(3)+(7+4*sqrt(3))*(97+56*sqrt(3))^n))/128.
(End)

A201003 Triangular numbers, T(m), that are four-fifths of another triangular number: T(m) such that 5*T(m) = 4*T(k) for some k.

Original entry on oeis.org

0, 36, 11628, 3744216, 1205625960, 388207814940, 125001710784756, 40250162664876528, 12960427376379457296, 4173217365031520372820, 1343763031112773180590780, 432687522800947932629858376, 139324038578874121533633806328, 44861907734874666185897455779276
Offset: 0

Views

Author

Charlie Marion, Dec 20 2011

Keywords

Comments

Also, numbers m such that 8*m+1 and 10*m+1 are squares. Example: 8*1205625960+1 = 98209^2 and 12056259601 = 109801^2. - Bruno Berselli, Mar 03 2016

Examples

			5*0 = 4*0;
5*36 = 4*45;
5*11628 = 4*14535;
5*3744216 = 4*4680270.
		

Crossrefs

Programs

  • Magma
    m:=20; R:=PowerSeriesRing(Integers(), m); [0] cat Coefficients(R!(36*x/((1-x)*(1-322*x+x^2)))); // G. C. Greubel, Jul 15 2018
  • Mathematica
    triNums = Table[(n^2 + n)/2, {n, 0, 4999}]; Select[triNums, MemberQ[triNums, (5/4)#] &] (* Alonso del Arte, Dec 20 2011 *)
    CoefficientList[Series[-36 x/((x - 1) (x^2 - 322 x + 1)), {x, 0, 30}], x] (* Vincenzo Librandi, Aug 11 2014 *)
    LinearRecurrence[{323,-323,1},{0,36,11628},20] (* Harvey P. Dale, Dec 21 2015 *)
  • PARI
    concat(0, Vec(36*x/((1-x)*(1-322*x+x^2)) + O(x^15))) \\ Colin Barker, Mar 02 2016
    

Formula

For n>1, a(n) = 322*a(n-1) - a(n-2) + 36. See A200993 for generalization.
G.f.: 36*x / ((1-x)*(x^2-322*x+1)). - R. J. Mathar, Aug 10 2014
From Colin Barker, Mar 02 2016: (Start)
a(n) = (-18+(9-4*sqrt(5))*(161+72*sqrt(5))^(-n)+(9+4*sqrt(5))*(161+72*sqrt(5))^n)/160.
a(n) = 323*a(n-1) - 323*a(n-2) + a(n-3) for n>2. (End)
a(n) = 36*A298271(n). - Amiram Eldar, Dec 01 2024

A201004 Triangular numbers, T(m), that are five-quarters of another triangular number; T(m) such that 4*T(m) = 5*T(k) for some k.

Original entry on oeis.org

0, 45, 14535, 4680270, 1507032450, 485259768675, 156252138480945, 50312703331095660, 16200534220474321620, 5216521706289400466025, 1679703788890966475738475, 540859403501184915787322970, 174155048223592651917042257910, 56077384668593332732371819724095
Offset: 0

Views

Author

Charlie Marion, Feb 15 2012

Keywords

Examples

			4*0 = 5*0.
4*45 = 5*36.
4*14535 = 5*11628.
4*4680270 = 5*3744216.
		

Crossrefs

Programs

  • Magma
    m:=25; R:=PowerSeriesRing(Integers(), m); Coefficients(R!(45*x/((1-x)*(1-322*x+x^2)))); // G. C. Greubel, Jul 15 2018
  • Mathematica
    LinearRecurrence[{323, -323, 1}, {0, 45, 14535}, 20] (* T. D. Noe, Feb 15 2012 *)
    CoefficientList[Series[-45 x/((x - 1) (x^2 - 322 x + 1)), {x, 0, 30}], x] (* Vincenzo Librandi, Aug 11 2014 *)
  • PARI
    concat(0, Vec(45*x/((1-x)*(1-322*x+x^2)) + O(x^15))) \\ Colin Barker, Mar 02 2016
    

Formula

For n > 1, a(n) = 322*a(n-1) - a(n-2) + 45. See A200994 for generalization.
G.f.: 45*x / ((1-x)*(x^2-322*x+1)). - R. J. Mathar, Aug 10 2014
From Colin Barker, Mar 02 2016: (Start)
a(n) = (-18 + (9-4*sqrt(5))*(161+72*sqrt(5))^(-n) + (9+4*sqrt(5))*(161+72*sqrt(5))^n)/128.
a(n) = 323*a(n-1) - 323*a(n-2) + a(n-3) for n > 2. (End)
a(n) = 45*A298271(n). - Amiram Eldar, Dec 01 2024

Extensions

a(7) corrected by R. J. Mathar, Aug 10 2014
Showing 1-5 of 5 results.