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!)
A342279 A bisection of A000201: a(n) = A000201(2*n+1). 2
1, 4, 8, 11, 14, 17, 21, 24, 27, 30, 33, 37, 40, 43, 46, 50, 53, 56, 59, 63, 66, 69, 72, 76, 79, 82, 85, 88, 92, 95, 98, 101, 105, 108, 111, 114, 118, 121, 124, 127, 131, 134, 137, 140, 144, 147, 150, 153, 156, 160, 163, 166, 169, 173, 176, 179, 182, 186, 189 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
N. J. A. Sloane, Families of Essentially Identical Sequences, Mar 24 2021 (Includes this sequence)
PROG
(Python)
import math
phi = (1 + math.sqrt(5))/2
for n in range(101):
print(int(math.floor((2*n)+ 1) * phi), end=', ')
# Alvin Hoover Belt, Mar 17 2021
(Python)
from math import isqrt
def A342279(n): return ((m:=(n<<1)+1)+isqrt(5*m**2)>>1) # Chai Wah Wu, Aug 10 2022
CROSSREFS
Sequence in context: A311033 A072518 A113553 * A248228 A297464 A311034
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Mar 16 2021
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 May 10 05:27 EDT 2024. Contains 372356 sequences. (Running on oeis4.)