login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A176818
a(n) = (3^(2*n+1) + 2^(n+2))/7.
0
1, 5, 37, 317, 2821, 25325, 227797, 2049917, 18448741, 166037645, 1494336757, 13449026717, 121041232261, 1089371073965, 9804339632917, 88239056630717, 794151509545381, 7147363585646285, 64326272270292277, 578936450431581917
OFFSET
0,2
COMMENTS
3^(2*n+1) + 2^(n+2) = 3*(3^2)^n + 4*2^n == 3*2^n + 4*2^n = 7*2^n == 0 (mod 7).
FORMULA
G.f.: ( 1-6*x ) / ( (9*x-1)*(2*x-1) ). - R. J. Mathar, Feb 18 2016
EXAMPLE
a(2) = (3^5 + 2^4)/7 = 259/7 = 37.
MAPLE
a:= n-> (3^(2*n+1) + 2^(n+2))/7:
seq (a(n), n=0..30);
CROSSREFS
Sequence in context: A084212 A358883 A323219 * A359643 A068785 A378892
KEYWORD
nonn,easy
AUTHOR
Michel Lagneau, Apr 26 2010
STATUS
approved