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!)
A261521 a(n) = n^2 + 2*n + 29. 0
29, 32, 37, 44, 53, 64, 77, 92, 109, 128, 149, 172, 197, 224, 253, 284, 317, 352, 389, 428, 469, 512, 557, 604, 653, 704, 757, 812, 869, 928, 989, 1052, 1117, 1184, 1253, 1324, 1397, 1472, 1549, 1628, 1709, 1792, 1877, 1964, 2053, 2144, 2237, 2332, 2429, 2528 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
A139851, which lists primes of the form 4x^2 + 4xy + 29y^2, contains all prime values of a(n). - Altug Alkan, Oct 02 2015
LINKS
FORMULA
a(n) = a(n-1) + A005408(n), a(0) = 29, for n > 0. - Altug Alkan, Oct 02 2015
G.f.: (29 - 55*x + 28*x^2)/(1-x)^3. - Vincenzo Librandi, Oct 03 2015
a(n) = 3*a(n-1) - 3*a(n-2) + a(n-3). - Vincenzo Librandi, Oct 03 2015
a(n) = A005563(n) + 29. - Omar E. Pol, Oct 17 2015
EXAMPLE
For n = 3, a(3) = 3^2 + 2*3 + 29 = 44.
MATHEMATICA
Table[n^2 + 2 n + 29, {n, 0, 50}] (* Bruno Berselli, Oct 25 2015 *)
LinearRecurrence[{3, -3, 1}, {29, 32, 37}, 50] (* Harvey P. Dale, Oct 14 2023 *)
PROG
(Python) def a(x):return x*x+2*x+27
(PARI) vector(50, n, n--; n^2+2*n+29) \\ Altug Alkan, Oct 02 2015
(PARI) Vec((29 - 55*x + 28*x^2)/(1-x)^3 + O(x^100)) \\ Altug Alkan, Oct 17 2015
(Magma) [n^2+2*n+29: n in [0..50]]; // Vincenzo Librandi, Oct 03 2015
CROSSREFS
Sequence in context: A178425 A344796 A294737 * A114180 A260729 A295153
KEYWORD
nonn,easy
AUTHOR
Jake Saville, Oct 02 2015
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 06:24 EDT 2024. Contains 371769 sequences. (Running on oeis4.)