A009990 Powers of 46.
1, 46, 2116, 97336, 4477456, 205962976, 9474296896, 435817657216, 20047612231936, 922190162669056, 42420747482776576, 1951354384207722496, 89762301673555234816, 4129065876983540801536, 189937030341242876870656, 8737103395697172336050176, 401906756202069927458308096
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 (46).
Programs
-
Magma
[46^n: n in [0..20]]; // Vincenzo Librandi, Nov 21 2010
-
Mathematica
46^Range[0,20] (* or *) NestList[46#&,1,20] (* Harvey P. Dale, Jan 15 2017 *)
Formula
G.f.: 1/(1-46*x). - Philippe Deléham, Nov 24 2008
a(n) = 46^n; a(n) = 46*a(n-1), a(0)=1. - Vincenzo Librandi, Nov 21 2010
From Elmo R. Oliveira, Jul 10 2025: (Start)
E.g.f.: exp(46*x).
Comments