A362361 a(n) = n*2^10 - 3.
1021, 2045, 3069, 4093, 5117, 6141, 7165, 8189, 9213, 10237, 11261, 12285, 13309, 14333, 15357, 16381, 17405, 18429, 19453, 20477, 21501, 22525, 23549, 24573, 25597, 26621, 27645, 28669, 29693, 30717, 31741, 32765
Offset: 1
Links
- Paolo Xausa, Table of n, a(n) for n = 1..10000
- Index entries for linear recurrences with constant coefficients, signature (2,-1).
Programs
-
Mathematica
Range[50]2^10-3 (* Paolo Xausa, Nov 17 2023 *)
-
Python
def A362361(n): return (n<<10)-3 # Chai Wah Wu, Jun 25 2023
Formula
a(n) = n*4^5 - 3, for n >= 1.
O.g.f: (x/(1-x)^2)*(4^5 - 3*(1-x)).
E.g.f.: 3 + exp(x)*(1024*x - 3). - Stefano Spezia, Jun 24 2023
Comments