A305862 a(n) = 384*4^n - 576*3^n + 220*2^n - 14.
14, 234, 1826, 10770, 55154, 260274, 1167026, 5059890, 21442994, 89438514, 368866226, 1509026610, 6137242034, 24853275954, 100327829426, 404059098930, 1624486948274, 6522713868594, 26165182536626, 104883769004850, 420204307937714, 1682825158192434, 6737324873467826
Offset: 0
Links
- Takao Komatsu, On poly-Euler numbers of the second kind, arXiv:1806.05515 [math.NT], 2018, page 11 (Lemma 3.4).
- Index entries for linear recurrences with constant coefficients, signature (10,-35,50,-24).
Programs
-
Magma
[384*4^n-576*3^n+220*2^n-14: n in [0..30]];
-
Mathematica
Table[384 4^n - 576 3^n + 220 2^n - 14, {n, 0, 30}]
-
PARI
a(n) = 384*4^n - 576*3^n + 220*2^n - 14; \\ Michel Marcus, Jul 03 2018
Formula
G.f.: 2*(7 + 47*x - 12*x^2)/((1 - x)*(1 - 2*x)*(1 - 3*x)*(1 - 4*x)).
a(n) = 10*a(n-1) - 35*a(n-2) + 50*a(n-3) - 24*a(n-4).
Comments