A221130 a(n) = 2^(2*n - 1) + n.
3, 10, 35, 132, 517, 2054, 8199, 32776, 131081, 524298, 2097163, 8388620, 33554445, 134217742, 536870927, 2147483664, 8589934609, 34359738386, 137438953491, 549755813908, 2199023255573, 8796093022230, 35184372088855, 140737488355352, 562949953421337
Offset: 1
Keywords
Examples
a(5)=2^(2*5-1)+5=517.
Links
- Jaroslav Krizek, Table of n, a(n) for n = 1..53
- Index entries for linear recurrences with constant coefficients, signature (6,-9,4)
Formula
a(n+1) = a(n) + 3*2^(2*n-1)+1 = a(n) + 6*4^(n-1)+1 = a(n) + 2^(2*n+1) - 2^(2*n-1) + 1 = a(n) + A199116(n-1).
G.f. -x*(3-8*x+2*x^2) / ( (4*x-1)*(x-1)^2 ). - R. J. Mathar, Jan 17 2013
Comments