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”).

A224790
a(n) = 3*9^n + 8.
13
11, 35, 251, 2195, 19691, 177155, 1594331, 14348915, 129140171, 1162261475, 10460353211, 94143178835, 847288609451, 7625597484995, 68630377364891, 617673396283955, 5559060566555531, 50031545098999715, 450283905890997371, 4052555153018976275
OFFSET
0,1
COMMENTS
Number of conjugacy classes in Ree group 2G2(3*9^n).
FORMULA
G.f.: 8/(1-x) + 3/(1-9*x).
a(n) = 10*a(n-1) - 9*a(n-2).
E.g.f.: 8*exp(x) + 3*exp(9*x). - G. C. Greubel, Nov 12 2019
MAPLE
seq(8+3^(2*n+1), n=0..20); # G. C. Greubel, Nov 12 2019
MATHEMATICA
8 + 3^(2*Range[21]-1) (* G. C. Greubel, Nov 12 2019 *)
PROG
(Sage) [3*9^n+8 for n in [0..20]]
(PARI) a(n)=3*9^n+8 \\ Charles R Greathouse IV, Sep 24 2015
(Magma) [8 + 3^(2*n+1): n in [0..20]]; // G. C. Greubel, Nov 12 2019
(GAP) List([0..20], n-> 8 + 3^(2*n+1)); # G. C. Greubel, Nov 12 2019
CROSSREFS
Cf. A188161.
Sequence in context: A368743 A199817 A216034 * A098116 A217336 A123749
KEYWORD
nonn,easy
AUTHOR
Eric M. Schmidt, Apr 18 2013
STATUS
approved