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!)
A133196 n+2 repeated n times. 2
3, 4, 4, 5, 5, 5, 6, 6, 6, 6, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, 10, 10, 10, 11, 11, 11, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 15 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(n) = A003056(n)+3, a(n) = A003057(n)+1; a(n) = t+3, where t=floor((-1+sqrt(8*n-7))/2). - Boris Putievskiy, May 07 2013
MATHEMATICA
Table[PadRight[{}, n, n+2], {n, 20}]//Flatten (* Harvey P. Dale, Sep 04 2019 *)
PROG
(Python)
from math import isqrt
def A133196(n): return 2+(isqrt(8*n)+1)//2 # Chai Wah Wu, Oct 17 2022
CROSSREFS
Sequence in context: A341730 A241163 A053405 * A179841 A059183 A262302
KEYWORD
nonn
AUTHOR
Paul Curtz, Oct 09 2007
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 July 24 20:07 EDT 2024. Contains 374585 sequences. (Running on oeis4.)