A245807 a(n) = 7^n + 10^n.
2, 17, 149, 1343, 12401, 116807, 1117649, 10823543, 105764801, 1040353607, 10282475249, 101977326743, 1013841287201, 10096889010407, 100678223072849, 1004747561509943, 10033232930569601, 100232630513987207, 1001628413597910449, 10011398895185373143
Offset: 0
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..1000
- Index entries for linear recurrences with constant coefficients, signature (17,-70).
Crossrefs
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]
Comments