A017342 a(n) = (10*n + 6)^2.
36, 256, 676, 1296, 2116, 3136, 4356, 5776, 7396, 9216, 11236, 13456, 15876, 18496, 21316, 24336, 27556, 30976, 34596, 38416, 42436, 46656, 51076, 55696, 60516, 65536, 70756, 76176, 81796, 87616, 93636, 99856, 106276, 112896, 119716, 126736
Offset: 0
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..10000
- Index entries for linear recurrences with constant coefficients, signature (3, -3, 1).
Programs
-
Magma
[(10*n+6)^2: n in [0..35]]; // Vincenzo Librandi, Aug 03 2011
-
Maple
A017342:=n->(10*n + 6)^2; seq(A017342(n), n=0..35); # Wesley Ivan Hurt, Jan 29 2014
-
Mathematica
Table[(10 n + 6)^2, {n, 0, 35}] (* Wesley Ivan Hurt, Jan 29 2014 *) LinearRecurrence[{3,-3,1},{36,256,676},40] (* Harvey P. Dale, Dec 04 2014 *)
-
PARI
a(n)=(10*n+6)^2 \\ Charles R Greathouse IV, Jun 17 2017