A324266 a(n) = 2*49^n.
2, 98, 4802, 235298, 11529602, 564950498, 27682574402, 1356446145698, 66465861139202, 3256827195820898, 159584532595224002, 7819642097165976098, 383162462761132828802, 18774960675295508611298, 919973073089479921953602, 45078680581384516175726498, 2208855348487841292610598402
Offset: 0
Examples
For A324265(0) = 5 and a(0) = 2, 5^2 + 7 = 32 = 4*2^3.
Links
- K. Chakraborty, A. Hoque, R. Sharma, Complete solutions of certain Lebesgue-Ramanujan-Nagell type equations, arXiv:1812.11874 [math.NT], 2018.
Programs
-
GAP
List([0..20], n->2*49^n);
-
Magma
[2*49^n: n in [0..20]];
-
Maple
a:=n->2*49^n: seq(a(n), n=0..20);
-
Mathematica
2*49^Range[0,20]
-
PARI
a(n) = 2*49^n;
Formula
O.g.f.: 2/(1 - 49*x).
E.g.f.: 2*exp(49*x).
a(n) = 49*a(n-1) for n > 0.
a(n) = (49/2)*(A109808(n))^2.
Comments