A049013 Duplicate of A020735.
5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 25, 27, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51
Offset: 1
Keywords
Links
- Tanya Khovanova, Recursive Sequences
This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
List([3,5..200],n->n); # Muniru A Asiru, Sep 28 2018
a144396 = (+ 1) . (* 2) a144396_list = [3, 5 ..] -- Reinhard Zumkeller, Feb 09 2015
seq(n,n=3..200,2); # Muniru A Asiru, Sep 28 2018
Range[3, 200, 2] (* Vladimir Joseph Stephan Orlovsky, Feb 19 2012 *)
a(n)=2*n+1 \\ Charles R Greathouse IV, Feb 14 2023
T[x_, y_, z_] := Block[{a}, a[0] = x; a[1] = y; a[n_] := a[n] = Floor[a[n - 1]^2/a[n - 2]]; Table[a[n], {n, 0, z}]]; T[7, 9, 66] (* Michael De Vlieger, Aug 08 2016 *)
pisotT(nmax, a1, a2) = { a=vector(nmax); a[1]=a1; a[2]=a2; for(n=3, nmax, a[n] = floor(a[n-1]^2/a[n-2])); a } pisotT(50, 7, 9) \\ Colin Barker, Aug 08 2016
Table[720 n + 1800, {n, 0, 40}] (* Bruno Berselli, Feb 25 2015 *)
Comments