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.

Previous Showing 11-17 of 17 results.

A155603 a(n) = 5^n+3^n-1.

Original entry on oeis.org

1, 7, 33, 151, 705, 3367, 16353, 80311, 397185, 1972807, 9824673, 49005271, 244672065, 1222297447, 6108298593, 30531927031, 152630937345, 763068593287, 3815084686113, 19074648589591, 95370918425025, 476847618556327
Offset: 0

Views

Author

Mohammad K. Azarian, Jan 25 2009

Keywords

Crossrefs

Programs

Formula

G.f.: 1/(1-5*x)+1/(1-3*x)-1/(1-x).
E.g.f.: e^(5*x)+e^(3*x)-e^x.
a(n) = 8*a(n-1)-15*a(n-2)-8 with a(0)=1, a(1)=7. - Vincenzo Librandi, Jul 21 2010
a(n) = A074606(n)-1. - R. J. Mathar, Mar 10 2022

A155623 a(n) = 11^n + 3^n - 1.

Original entry on oeis.org

1, 13, 129, 1357, 14721, 161293, 1772289, 19489357, 214365441, 2357967373, 25937483649, 285311847757, 3138428908161, 34522713738253, 379749838366209, 4177248183764557, 45949729906618881, 505447028628433933
Offset: 0

Views

Author

Mohammad K. Azarian, Jan 29 2009

Keywords

Comments

a^n+b^n-1^n=(a+b)*a(n-1)-(a*b)*a(n-2)-(a-1)*(b-1) - Vincenzo Librandi, Jul 21 2010

Crossrefs

Programs

Formula

G.f.: 1/(1 - 11*x) + 1/(1 - 3*x) - 1/(1 - x).
E.g.f.: exp(11*x) + exp(3*x) - exp(x).
a(n) = 14*a(n-1) - 33*a(n-2) - 20 for n>1, a(0)=1, a(1)=13 - Vincenzo Librandi, Jul 21 2010

A155622 a(n) = 11^n - 2^n + 1.

Original entry on oeis.org

1, 10, 118, 1324, 14626, 161020, 1771498, 19487044, 214358626, 2357947180, 25937423578, 285311668564, 3138428372626, 34522712135740, 379749833566858, 4177248169382884, 45949729863506626, 505447028499162700
Offset: 0

Views

Author

Mohammad K. Azarian, Jan 29 2009

Keywords

Comments

In general: r^n - s^n + 1 = (r+s)*a(n-1)-(r*s)*a(n-2)+(r-1)*(s-1). - Vincenzo Librandi, Jul 21 2010

Crossrefs

Programs

  • Mathematica
    Table[11^n - 2^n + 1, {n, 0, 20}] (* or *) LinearRecurrence[{14, -35, 22}, {1, 10, 118}, 20] (* Harvey P. Dale, Oct 21 2013 *)
  • PARI
    a(n)=11^n-2^n+1 \\ Charles R Greathouse IV, Jun 11 2015

Formula

G.f.: 1/(1 - 11*x) - 1/(1 - 2*x) + 1/(1-x).
E.g.f.: exp(11*x) - exp(2*x) + exp(x).
a(n) = 13*a(n-1) - 22*a(n-2) + 10 for n>1, a(0)=1, a(1)=10. - Vincenzo Librandi, Jul 21 2010

A155604 a(n) = 6^n + 3^n - 1.

Original entry on oeis.org

1, 8, 44, 242, 1376, 8018, 47384, 282122, 1686176, 10097378, 60525224, 362974202, 2177313776, 13062288338, 78368947064, 470199333482, 2821152954176, 16926788584898, 101560344088904, 609360902271962, 3656161926847376
Offset: 0

Views

Author

Mohammad K. Azarian, Jan 25 2009

Keywords

Crossrefs

Programs

Formula

G.f.: 1/(1-6*x)+1/(1-3*x)-1/(1-x).
E.g.f.: exp(6*x)+exp(3*x)-exp(x).
a(n) = 9*a(n-1)-18*a(n-2)-10 with a(0) = 1, a(1) = 8. - Vincenzo Librandi, Jul 21 2010

A155605 7^n+3^n-1.

Original entry on oeis.org

1, 9, 57, 369, 2481, 17049, 118377, 825729, 5771361, 40373289, 282534297, 1977503889, 13841818641, 96890604729, 678227855817, 4747575858849, 33232973616321, 232630643127369, 1628413985330937, 11398896347634609
Offset: 0

Views

Author

Mohammad K. Azarian, Jan 25 2009

Keywords

Crossrefs

Programs

Formula

G.f.: 1/(1-7*x)+1/(1-3*x)-1/(1-x). E.g.f.: e^(7*x)+e^(3*x)-e^x.
a(n)=10*a(n-1)-21*a(n-2)-12 with a(0)=1, a(1)=9 - Vincenzo Librandi, Jul 21 2010
a(0)=1, a(1)=9, a(2)=57, a(n)=11*a(n-1)-31*a(n-2)+21*a(n-3). - Harvey P. Dale, Nov 09 2012

A155606 a(n) = 8^n + 3^n - 1.

Original entry on oeis.org

1, 10, 72, 538, 4176, 33010, 262872, 2099338, 16783776, 134237410, 1073800872, 8590111738, 68720008176, 549757408210, 4398051294072, 35184386437738, 281475019757376, 2251799942825410, 18014398896902472, 144115189238117338
Offset: 0

Views

Author

Mohammad K. Azarian, Jan 25 2009

Keywords

Examples

			G.f. = 1 + 10*x + 72*x^2 + 538*x^3 + 4176*x^4 + 33010*x^5 + 262872*x^6 + ...
		

Crossrefs

Programs

Formula

G.f.: 1/(1-8*x) + 1/(1-3*x) - 1/(1-x).
E.g.f.: e^(8*x) + e^(3*x) - e^x.
a(n) = 11*a(n-1) - 24*a(n-2) - 14 with a(0)=1, a(1)=10. - Vincenzo Librandi, Jul 21 2010

A155595 11^n+2^n-1.

Original entry on oeis.org

1, 12, 124, 1338, 14656, 161082, 1771624, 19487298, 214359136, 2357948202, 25937425624, 285311672658, 3138428380816, 34522712152122, 379749833599624, 4177248169448418, 45949729863637696, 505447028499424842
Offset: 0

Views

Author

Mohammad K. Azarian, Jan 24 2009

Keywords

Crossrefs

Programs

Formula

G.f.: 1/(1-11*x)+1/(1-2*x)-1/(1-x). E.g.f.: e^(11*x)+e^(2*x)-e^x.
a(n)=13*a(n-1)-22*a(n-2)-10 with a(0)=1, a(1)=12 - Vincenzo Librandi, Jul 21 2010
Previous Showing 11-17 of 17 results.