A155609 a(n) = 4^n - 3^n + 1.
1, 2, 8, 38, 176, 782, 3368, 14198, 58976, 242462, 989528, 4017158, 16245776, 65514542, 263652488, 1059392918, 4251920576, 17050729022, 68332056248, 273715645478, 1096024843376, 4387586157902, 17560804984808, 70274600998838
Offset: 0
Links
- Ross La Haye, Binary Relations on the Power Set of an n-Element Set, Journal of Integer Sequences, Vol. 12 (2009), Article 09.2.6.
- Index entries for linear recurrences with constant coefficients, signature (8,-19,12).
Crossrefs
Programs
-
Mathematica
Table[4^n-3^n+1,{n,0,40}] (* Vladimir Joseph Stephan Orlovsky, Feb 15 2011 *) LinearRecurrence[{8,-19,12},{1,2,8},30] (* Harvey P. Dale, Sep 30 2018 *)
-
PARI
a(n)=4^n-3^n+1 \\ Charles R Greathouse IV, Oct 07 2015
Formula
G.f.: 1/(1-4*x) - 1/(1-3*x) + 1/(1-x).
E.g.f.: exp(4*x) - exp(3*x) + exp(x).
a(n) = 7*a(n-1)-12*a(n-2)+6 with a(0)=1, a(1)=2. - Vincenzo Librandi, Jul 21 2010
Comments