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!)
A206399 a(0) = 1; for n>0, a(n) = 41*n^2 + 2. 35
1, 43, 166, 371, 658, 1027, 1478, 2011, 2626, 3323, 4102, 4963, 5906, 6931, 8038, 9227, 10498, 11851, 13286, 14803, 16402, 18083, 19846, 21691, 23618, 25627, 27718, 29891, 32146, 34483, 36902, 39403, 41986, 44651, 47398, 50227, 53138, 56131, 59206, 62363 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Apart from the first term, numbers of the form (r^2+2*s^2)*n^2+2 = (r*n)^2+(s*n-1)^2+(s*n+1)^2: in this case is r=3, s=4. After 1, all terms are in A000408.
LINKS
FORMULA
O.g.f.: (1 + x)*(1 + 39*x + x^2)/(1 - x)^3.
a(n) = 3*a(n-1) - 3*a(n-2) + a(n-3) for n >= 4. - Wesley Ivan Hurt, Dec 18 2020
MATHEMATICA
Join[{1}, 41 Range[39]^2 + 2]
CoefficientList[Series[(1 + x) (1 + 39 x + x^2) / (1 - x)^3, {x, 0, 40}], x] (* Vincenzo Librandi, Aug 18 2013 *)
PROG
(Magma) [n eq 0 select 1 else 41*n^2+2: n in [0..39]];
(Magma) I:=[1, 43, 166, 371]; [n le 4 select I[n] else 3*Self(n-1)-3*Self(n-2)+Self(n-3): n in [1..41]]; // Vincenzo Librandi, Aug 18 2013
(PARI) a(n)=if(n, 41*n^2+2, 1) \\ Charles R Greathouse IV, Sep 24 2015
CROSSREFS
Sequence in context: A235392 A078852 A078956 * A123040 A142016 A140640
KEYWORD
nonn,easy
AUTHOR
Bruno Berselli, Feb 07 2012
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 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)