A073760 Integers m such that A073758(m) = 4.
6, 10, 14, 18, 22, 26, 30, 34, 38, 42, 46, 50, 54, 58, 62, 66, 70, 74, 78, 82, 86, 90, 94, 98, 102, 106, 110, 114, 118, 122, 126, 130, 134, 138, 142, 146, 150, 154, 158, 162, 166, 170, 174, 178, 182, 186, 190, 194, 198, 202, 206, 210, 214, 218, 222, 226, 230
Offset: 1
Links
- Index entries for linear recurrences with constant coefficients, signature (2,-1).
Programs
-
PARI
a(n) = 4*n+2; \\ Altug Alkan, Jul 23 2018
Formula
a(n) = 4*n + 2. - Max Alekseyev, Mar 03 2007
a(n) = 8*n - a(n-1), with a(1)=6. - Vincenzo Librandi, Aug 08 2010
a(1)=6, a(2)=10; for n>2, a(n) = 2*a(n-1) - a(n-2). - Harvey P. Dale, Mar 06 2012
Extensions
Definition simplified by Michel Marcus, Jul 26 2018
Comments