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!)
A045928 The generalized Connell sequence C_{3,2}. 8

%I #21 Mar 08 2020 04:04:32

%S 1,2,5,8,9,12,15,18,21,22,25,28,31,34,37,40,41,44,47,50,53,56,59,62,

%T 65,66,69,72,75,78,81,84,87,90,93,96,97,100,103,106,109,112,115,118,

%U 121,124,127,130,133,134,137,140,143,146,149,152,155,158,161,164,167,170,173,176,177

%N The generalized Connell sequence C_{3,2}.

%H Reinhard Zumkeller, <a href="/A045928/b045928.txt">Table of n, a(n) for n = 1..10000</a>

%H Douglas E. Iannucci and Donna Mills-Taylor, <a href="http://www.cs.uwaterloo.ca/journals/JIS/IANN/iann1.html">On Generalizing the Connell Sequence</a>, J. Integer Sequences, Vol. 2, 1999, #99.1.7.

%F C(n, m, r) = n*m - (m - 1)*floor((3*r - 2 + sqrt(8*r*(n - 1) + (r - 2)^2)) / (2*r)) with m=3 and r=2, thus a(n) = 3*n - 2*floor(1 + sqrt(n-1)). - _Michel Marcus_, Apr 02 2013

%e From _Michel Marcus_, Apr 02 2013: (Start)

%e As a triangle, sequence begins:

%e 1;

%e 2, 5, 8;

%e 9, 12, 15, 18, 21;

%e ...

%e (End)

%t Table[3*n-2*Floor[1+Sqrt[n-1]],{n,70}] (* _Harvey P. Dale_, Apr 19 2019 *)

%o (PARI) lista(nrow, m=3, r=2) = {a = 1; for (irow = 1, nrow, for (k = 1, 1 + r*(irow -1), print1(a, ", "); a += m;); a += 1 - m;);} \\ _Michel Marcus_, Apr 02 2013

%o (Haskell)

%o a045928 n = 3 * n - 2 * floor (1 + sqrt (fromIntegral n - 1))

%o -- _Reinhard Zumkeller_, Aug 09 2015

%K nonn,easy,nice

%O 1,2

%A _N. J. A. Sloane_

%E More terms from jeroen.lahousse(AT)icl.com

%E Typo in formula fixed by _Reinhard Zumkeller_, Aug 09 2015

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 March 28 18:04 EDT 2024. Contains 371254 sequences. (Running on oeis4.)