A009986 Powers of 42.
1, 42, 1764, 74088, 3111696, 130691232, 5489031744, 230539333248, 9682651996416, 406671383849472, 17080198121677824, 717368321110468608, 30129469486639681536, 1265437718438866624512, 53148384174432398229504, 2232232135326160725639168, 93753749683698750476845056
Offset: 0
Links
- T. D. Noe, Table of n, a(n) for n = 0..100
- Tanya Khovanova, Recursive Sequences.
- Index entries for linear recurrences with constant coefficients, signature (42).
Programs
-
Magma
[42^n: n in [0..20]]; // Vincenzo Librandi, Nov 21 2010
-
Mathematica
42^Range[0, 14] (* Michael De Vlieger, Jan 13 2018 *)
-
PARI
a(n) = 42^n; \\ Michel Marcus, Jan 14 2018
Formula
G.f.: 1/(1-42*x). - Philippe Deléham, Nov 24 2008
a(n) = 42^n; a(n) = 42*a(n-1), a(0)=1. - Vincenzo Librandi, Nov 21 2010
From Elmo R. Oliveira, Jul 10 2025: (Start)
E.g.f.: exp(42*x).
Comments