A135640 Powers of 839: a(n) = 839^n.
1, 839, 703921, 590589719, 495504774241, 415728505588199, 348796216188498961, 292640025382150628279, 245524981295624377126081, 205995459307028852408781959, 172830190358597207170968063601, 145004529710863056816442205361239, 121658800427414104668995010298079521
Offset: 0
Examples
a(2) = 703921 because 839^2 = 839*839 = 703921.
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..200
- Index entries for linear recurrences with constant coefficients, signature (839).
Programs
-
Mathematica
Table[839^n,{n,0,20}] (* Vincenzo Librandi, Mar 12 2012 *) NestList[839#&,1,20] (* Harvey P. Dale, Aug 17 2019 *)
Formula
a(n) = 839^n.
From Elmo R. Oliveira, Jul 05 2025: (Start)
G.f.: 1/(1-839*x).
E.g.f.: exp(839*x).
a(n) = 839*a(n-1). (End)
Comments