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.

A074624 a(n) = 8^n + 9^n.

Original entry on oeis.org

2, 17, 145, 1241, 10657, 91817, 793585, 6880121, 59823937, 521638217, 4560526225, 39970994201, 351149013217, 3091621642217, 27274838966065, 241075504183481, 2134495165562497, 18928981513351817, 168109033806481105
Offset: 0

Views

Author

Robert G. Wilson v, Aug 26 2002

Keywords

Crossrefs

Programs

Formula

From Mohammad K. Azarian, Jan 11 2009: (Start)
G.f.: 1/(1-8*x) + 1/(1-9*x).
E.g.f.: exp(8*x) + exp(9*x). (End)
a(n) = 17*a(n-1) - 72*a(n-2) with a(0)=2, a(1)=17. - Vincenzo Librandi, Jul 21 2010

A245807 a(n) = 7^n + 10^n.

Original entry on oeis.org

2, 17, 149, 1343, 12401, 116807, 1117649, 10823543, 105764801, 1040353607, 10282475249, 101977326743, 1013841287201, 10096889010407, 100678223072849, 1004747561509943, 10033232930569601, 100232630513987207, 1001628413597910449, 10011398895185373143
Offset: 0

Views

Author

Vincenzo Librandi, Aug 04 2014

Keywords

Crossrefs

Cf. 7^n+k^n: A034491 (k=1), A074602 (k=2), A074608 (k=3), A074613 (k=4), A074616 (k=5), A074619 (k=6), A109808 (k=7), A074622 (k=8), A074623 (k=9), this sequence (k=10).

Programs

  • Magma
    [7^n+10^n: n in [0..25]];
    
  • Magma
    I:=[2,17]; [n le 2 select I[n] else 17*Self(n-1)-70*Self(n-2): n in [1..25]];
  • Mathematica
    Table[(7^n + 10^n), {n, 0, 30}] (* or *) CoefficientList[Series[(2 - 17 x)/((1 - 7 x) (1 - 10 x)), {x, 0, 40}], x]

Formula

G.f.: (2-17*x)/((1-7*x)*(1-10*x)).
E.g.f.: e^(7*x) + e^(10*x).
a(n) = 17*a(n-1)-70*a(n-2).
a(n) = A000420(n) + A011557(n).
Showing 1-2 of 2 results.