OFFSET
1,1
COMMENTS
Last number of the n-th row of the triangle described in A142717.
If negated, these are also the values at local minima of the sequence A141620.
a(n) is the shortest leg of the n-th Pythagorean triple with consecutive longer leg and hypotenuse. The n-th such triple is given by (2n+1,2n^2+2n, 2n^2+2n+1), so that the longer legs are A046092(n) and the hypotenuses are A099776(n). - Ant King, Feb 10 2011
Numbers k such that the symmetric representation of sigma(k) has a pair of bars as its ends (cf. A237593). - Omar E. Pol, Sep 28 2018
Numbers k such that there is a prime knot with k crossings and braid index 2. (IS this true with "prime" removed?) - Charles R Greathouse IV, Feb 14 2023
LINKS
Muniru A Asiru, Table of n, a(n) for n = 1..1000
Index entries for linear recurrences with constant coefficients, signature (2,-1)
FORMULA
G.f.: x*(3-x)/(1-x)^2. - Jaume Oliver Lafont, Aug 30 2009
a(n) = A254858(n-1,2). - Reinhard Zumkeller, Feb 09 2015
MAPLE
seq(n, n=3..200, 2); # Muniru A Asiru, Sep 28 2018
MATHEMATICA
Range[3, 200, 2] (* Vladimir Joseph Stephan Orlovsky, Feb 19 2012 *)
PROG
(Haskell)
a144396 = (+ 1) . (* 2)
a144396_list = [3, 5 ..] -- Reinhard Zumkeller, Feb 09 2015
(GAP) List([3, 5..200], n->n); # Muniru A Asiru, Sep 28 2018
(PARI) a(n)=2*n+1 \\ Charles R Greathouse IV, Feb 14 2023
CROSSREFS
KEYWORD
nonn,easy,less
AUTHOR
Paul Curtz, Oct 03 2008
EXTENSIONS
Edited by R. J. Mathar, May 21 2009
STATUS
approved