A306472 a(n) = 37*27^n.
37, 999, 26973, 728271, 19663317, 530909559, 14334558093, 387033068511, 10449892849797, 282147106944519, 7617971887502013, 205685240962554351, 5553501505988967477, 149944540661702121879, 4048502597865957290733, 109309570142380846849791, 2951358393844282864944357
Offset: 0
Examples
For a(0) = 37 and A002042(0) = 7, 37^2 + 3 = 1372 = 4*7^3.
Links
- K. Chakraborty, A. Hoque, and R. Sharma, Complete solutions of certain Lebesgue-Ramanujan-Nagell type equations, arXiv:1812.11874 [math.NT], 2018.
- Index entries for linear recurrences with constant coefficients, signature (27).
Programs
-
GAP
List([0..20], n->37*27^n);
-
Magma
[37*27^n: n in [0..20]];
-
Maple
a:=n->37*27^n: seq(a(n), n=0..20);
-
Mathematica
37*27^Range[0,20]
-
PARI
a(n) = 37*27^n;
Comments