cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A199109 a(n) = (7*3^n + 1)/2.

Original entry on oeis.org

4, 11, 32, 95, 284, 851, 2552, 7655, 22964, 68891, 206672, 620015, 1860044, 5580131, 16740392, 50221175, 150663524, 451990571, 1355971712, 4067915135, 12203745404, 36611236211, 109833708632, 329501125895, 988503377684, 2965510133051, 8896530399152, 26689591197455
Offset: 0

Views

Author

Vincenzo Librandi, Nov 03 2011

Keywords

Comments

Also the number of (not necessarily maximal) cliques in the (n+2)-Mycielski graph. - Eric W. Weisstein, Nov 29 2017

Examples

			Ternary....................Decimal
11...............................4
102.............................11
1012............................32
10112...........................95
101112.........................284
1011112........................851
10111112......................2552
101111112.....................7655
1011111112...................22964, etc.
- _Philippe Deléham_, Feb 16 2014
		

Crossrefs

Cf. A000244, A003462, A005032 (first differences), A199110, A237930.

Programs

Formula

a(n) = 3*a(n-1) - 1.
a(n) = 4*a(n-1) - 3*a(n-2).
G.f.: (4-5*x)/((1-x)*(1-3*x)). - Bruno Berselli, Nov 03 2011
a(n) = A000244(n+1) + A003462(n) + 1 = A237930(n) + 1. - Philippe Deléham, Feb 16 2014
From Elmo R. Oliveira, Apr 02 2025: (Start)
E.g.f.: exp(x)*(7*exp(2*x) + 1)/2.
a(n) = A199110(n)/2. (End)