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.

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

This page as a plain text file.
%I A245807 #22 Apr 01 2025 17:21:09
%S A245807 2,17,149,1343,12401,116807,1117649,10823543,105764801,1040353607,
%T A245807 10282475249,101977326743,1013841287201,10096889010407,
%U A245807 100678223072849,1004747561509943,10033232930569601,100232630513987207,1001628413597910449,10011398895185373143
%N A245807 a(n) = 7^n + 10^n.
%H A245807 Vincenzo Librandi, <a href="/A245807/b245807.txt">Table of n, a(n) for n = 0..1000</a>
%H A245807 <a href="/index/Rec#order_02">Index entries for linear recurrences with constant coefficients</a>, signature (17,-70).
%F A245807 G.f.: (2-17*x)/((1-7*x)*(1-10*x)).
%F A245807 E.g.f.: e^(7*x) + e^(10*x).
%F A245807 a(n) = 17*a(n-1)-70*a(n-2).
%F A245807 a(n) = A000420(n) + A011557(n).
%t A245807 Table[(7^n + 10^n), {n, 0, 30}] (* or *) CoefficientList[Series[(2 - 17 x)/((1 - 7 x) (1 - 10 x)), {x, 0, 40}], x]
%o A245807 (Magma) [7^n+10^n: n in [0..25]];
%o A245807 (Magma) I:=[2,17]; [n le 2 select I[n] else 17*Self(n-1)-70*Self(n-2): n in [1..25]];
%Y A245807 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).
%K A245807 nonn,easy
%O A245807 0,1
%A A245807 _Vincenzo Librandi_, Aug 04 2014