login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A016993 a(n) = 7*n + 1. 32
1, 8, 15, 22, 29, 36, 43, 50, 57, 64, 71, 78, 85, 92, 99, 106, 113, 120, 127, 134, 141, 148, 155, 162, 169, 176, 183, 190, 197, 204, 211, 218, 225, 232, 239, 246, 253, 260, 267, 274, 281, 288, 295, 302, 309, 316, 323, 330, 337, 344, 351, 358, 365, 372, 379 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
For n > 3, also the number of (not necessarily maximal) cliques in the n-web graph. - Eric W. Weisstein, Nov 29 2017
The number of notes in a musical scale of n octaves. - Geoffrey Trueman Falk, Feb 16 2023
LINKS
Tanya Khovanova, Recursive Sequences
Eric Weisstein's World of Mathematics, Clique
Eric Weisstein's World of Mathematics, Web Graph
FORMULA
a(n) = 7*n + 1.
G.f.: (1+6*x)/(1-x)^2.
From Elmo R. Oliveira, Mar 07 2024: (Start)
a(n) = 2*a(n-1) - a(n-2).
E.g.f.: (1 + 7*x)*exp(x). (End)
MAPLE
A016993:=n->7*n+1: seq(A016993(n), n=0..70); # Wesley Ivan Hurt, Nov 01 2014
MATHEMATICA
7*Range[0, 55] + 1 (* Alonso del Arte, Oct 26 2014 *)
Table[7 n + 1, {n, 0, 20}] (* Eric W. Weisstein, Nov 29 2017 *)
LinearRecurrence[{2, -1}, {8, 15}, {0, 20}] (* Eric W. Weisstein, Nov 29 2017 *)
CoefficientList[Series[(1 + 6 x)/(-1 + x)^2, {x, 0, 20}], x] (* Eric W. Weisstein, Nov 29 2017 *)
PROG
(Magma) [7*n+1: n in [0..60]]; // Vincenzo Librandi, May 28 2011
(Haskell)
a016993 = (+ 1) . (* 7)
a016993_list = [1, 8 ..] -- Reinhard Zumkeller, Jan 25 2013
(PARI) a(n)=7*n+1 \\ Charles R Greathouse IV, Jul 10 2016
CROSSREFS
Cf. A093564 (column 1).
Sequence in context: A008686 A003331 A345783 * A079043 A291747 A024734
KEYWORD
nonn,easy
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 27 08:58 EDT 2024. Contains 372017 sequences. (Running on oeis4.)