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!)
A010000 a(0) = 1, a(n) = n^2 + 2 for n > 0. 17

%I #69 May 07 2024 04:50:12

%S 1,3,6,11,18,27,38,51,66,83,102,123,146,171,198,227,258,291,326,363,

%T 402,443,486,531,578,627,678,731,786,843,902,963,1026,1091,1158,1227,

%U 1298,1371,1446,1523,1602,1683,1766,1851,1938,2027,2118,2211,2306,2403

%N a(0) = 1, a(n) = n^2 + 2 for n > 0.

%C Least k such that A070864(k) = 2n-1. - _Robert G. Wilson v_ and _Benoit Cloitre_, May 20 2002

%C With an offset of 3, beginning with 6 (deleting first two terms) n*(n+a(n)) + 1 is a cube = (n+1)^3: 1*(1+6) + 1 = 8, 2*(2+11) + 1 = 27, etc. - _Amarnath Murthy_ and Meenakshi Srikanth (menakan_s(AT)yahoo.com), May 03 2003

%C For n >= 2, a(n) is the maximum element in the continued fraction for Sum_{k>=1} 1/n^(2^k) (for n=2 see A006464). - _Benoit Cloitre_, Jun 12 2007

%C Equals binomial transform of [1, 2, 1, 1, -1, 1, -1, 1, ...]. - _Gary W. Adamson_, Apr 23 2008

%C Minimum Wiener index of 3-degenerate graphs with n+2 vertices. A maximal 3-degenerate graph can be constructed from a 3-clique by iteratively adding a new 3-leaf (vertex of degree 3) adjacent to three existing vertices. The extremal graphs are maximal 3-degenerate graphs with diameter at most 2. - _Allan Bickle_, Oct 14 2022

%C a(n-1) is the number of unit triangles enclosed by the triangular spiral drawn on a isometric grid of which the n-th side has length n. The picture in the link shows how the spiral is constructed. - _Bob Andriesse_, Feb 14 2023

%H Bruno Berselli, <a href="/A010000/b010000.txt">Table of n, a(n) for n = 0..1000</a>

%H Bob Andriesse, <a href="/A010000/a010000.jpg">Graphical representation of the first 21 segments of the spiral with grid.</a>

%H Allan Bickle, <a href="https://allanbickle.files.wordpress.com/2016/05/degeneratediam2-2.pdf">Wiener indices of maximal k-degenerate graphs</a>, International Journal of Mathematical Combinatorics 2 (2021) 68-79.

%H Allan Bickle and Zhongyuan Che, <a href="https://arxiv.org/abs/1908.09202">Wiener indices of maximal k-degenerate graphs</a>, arXiv:1908.09202 [math.CO], 2019.

%H Allan Bickle, <a href="https://doi.org/10.20429/tag.2024.000105">A Survey of Maximal k-degenerate Graphs and k-Trees</a>, Theory and Applications of Graphs 0 1 (2024) Article 5.

%H <a href="/index/Rec#order_03">Index entries for linear recurrences with constant coefficients</a>, signature (3,-3,1).

%F a(n) = A000217(n-2) + A000217(n+1) for n > 0. - _Jon Perry_, Jul 23 2003

%F Euler transform of length 6 sequence [ 3, 0, 1, 0, 0, -1]. - _Michael Somos_, Aug 11 2009

%F From _Michael Somos_, Aug 11 2009: (Start)

%F G.f.: (1 + x^3) / (1 - x)^3.

%F a(n) = a(-n) for all n in Z. (End)

%F E.g.f.: (x*(x+1) + 2)*e^x - 1. - _Gopinath A. R._, Feb 14 2012

%F a(n) = (2*n/(n+1)!)*Sum_{j=0..n} (-1)^(n-j)*binomial(n,j)*(j+1/n)^(n+1), n > 0, a(0)=1. - _Vladimir Kruchinin_, Jun 03 2013

%F Sum_{n>=0} 1/a(n) = 3/4+1/4*sqrt(2)*Pi*coth(Pi*sqrt 2)= 1.8610281... - _R. J. Mathar_, May 07 2024

%e G.f. = 1 + 3*x + 6*x^2 + 11*x^3 + 18*x^4 + 27*x^5 + 38*x^6 + 51*x^7 + 66*x^8 + ...

%t a[1] = a[2] = 1; a[n_] := a[n] = 2 + a[n - a[n - 1]]; b = Table[0, {100}]; Do[c = (a[n] + 1)/2; If[c < 101 && b[[c]] == 0, b[[c]] = n], {n, 1, 10^4}]; b

%t Join[{1}, Range[50]^2 + 2] (* _Bruno Berselli_, Feb 08 2012 *)

%t a[ n_] := n^2 + 2 - Boole[n == 0]; (* _Michael Somos_, May 05 2015 *)

%o (PARI) {a(n) = n^2 + 2 - (n==0)}; /* _Michael Somos_, Aug 11 2009 */

%o (Maxima)

%o a(n):=if n=0 then 1 else 2*n*sum((-1)^(n-j)*binomial(n,j)*(j+1/n)^(n+1),j,0,n)/(n+1)!; \\ _Vladimir Kruchinin_, Jun 03 2013

%Y Cf. A070864. Apart from initial terms, same as A059100.

%Y Cf. A206399.

%Y Cf. A002061 (minimum Wiener index of 2-degenerate graphs).

%K nonn,easy,changed

%O 0,2

%A _N. J. A. Sloane_

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 May 12 14:31 EDT 2024. Contains 372481 sequences. (Running on oeis4.)