|
| |
|
|
A145995
|
|
a(n) = 8 - 12 n + 5 n^2.
|
|
2
| |
|
|
1, 4, 17, 40, 73, 116, 169, 232, 305, 388, 481, 584, 697, 820, 953, 1096, 1249, 1412, 1585, 1768, 1961, 2164, 2377, 2600, 2833, 3076, 3329, 3592, 3865, 4148, 4441, 4744, 5057, 5380, 5713, 6056, 6409, 6772, 7145, 7528, 7921, 8324, 8737, 9160, 9593, 10036
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,2
|
|
|
COMMENTS
| For n > 1, a(n) is square if and only if n-1 is in A081016.
|
|
|
LINKS
| Index entries for sequences related to linear recurrences with constant coefficients, signature (3,-3,1).
|
|
|
FORMULA
| a(n)=a(n-1)+10*n-17 (with a(1)=1) [From Vincenzo Librandi, Nov 26 2010]
|
|
|
EXAMPLE
| A081016(0) = 1 and a(2) = 2^2 = 4; A081016(1) = 6 and a(7) = 13^2 = 169; A081016(2) = 40 and a(41) = 89^2 = 7921; A081016(3) = 273 and a(274) = 610^2 = 372100; A081016(4) = 1870 and a(1871) = 4181^2 = 17480761.
|
|
|
MATHEMATICA
| Table[8 - 12 x + 5 x^2, {x, 1, 100}]
s = 1; lst = {s}; Do[s += n + 2; AppendTo[lst, s], {n, 1, 450, 10}]; lst [From Zerinvary Lajos (zerinvarylajos(AT)yahoo.com), Jul 11 2009]
|
|
|
PROG
| (PARI) {for(n=1, 46, print1(8-12*n+5*n^2, ", "))}
|
|
|
CROSSREFS
| Cf. A081016.
Cf. A000217, A080855 [From Zerinvary Lajos (zerinvarylajos(AT)yahoo.com), Jul 11 2009]
Sequence in context: A178947 A041859 A022266 * A018973 A162148 A166781
Adjacent sequences: A145992 A145993 A145994 * A145996 A145997 A145998
|
|
|
KEYWORD
| easy,nonn
|
|
|
AUTHOR
| Artur Jasinski (grafix(AT)csl.pl), Oct 26 2008
|
|
|
EXTENSIONS
| Corrected definition; corrected comment; added example, PARI code and keyword. - Klaus Brockhaus (klaus-brockhaus(AT)t-online.de), Oct 29 2008
|
| |
|
|