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!)
A297663 a(n) = 5*n + 2^n. 5
1, 7, 14, 23, 36, 57, 94, 163, 296, 557, 1074, 2103, 4156, 8257, 16454, 32843, 65616, 131157, 262234, 524383, 1048676, 2097257, 4194414, 8388723, 16777336, 33554557, 67108994, 134217863, 268435596, 536871057, 1073741974, 2147483803, 4294967456, 8589934757 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Also the number of chordless cycles in 2n-crossed prism graph for n >= 3.
LINKS
Eric Weisstein's World of Mathematics, Chordless Cycle
Eric Weisstein's World of Mathematics, Crossed Prism Graph
FORMULA
a(n) = 4*a(n-1) - 5*a(n-2) + 2*a(n-3).
G.f.: (-1 - 3*x + 9*x^2)/((-1 + x)^2*(-1 + 2*x)).
MATHEMATICA
Table[5 n + 2^n, {n, 0, 20}]
LinearRecurrence[{4, -5, 2}, {7, 14, 23}, {0, 20}]
seq = CoefficientList[Series[(-1 - 3 x + 9 x^2)/((-1 + x)^2 (-1 + 2 x)), {x, 0, 20}], x]
PROG
(Magma) I:=[1, 7, 14]; [n le 3 select I[n] else 4*Self(n-1)- 5*Self(n-2)+2*Self(n-3): n in [1..40]]; // Vincenzo Librandi, Feb 21 2018
CROSSREFS
Sequence in context: A050953 A333859 A232825 * A190779 A188383 A025011
KEYWORD
nonn,easy
AUTHOR
Eric W. Weisstein, Jan 02 2018
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 25 11:39 EDT 2024. Contains 371969 sequences. (Running on oeis4.)