A141355 The Jacobsthal sequence, dropping each third term.
1, 1, 5, 11, 43, 85, 341, 683, 2731, 5461, 21845, 43691, 174763, 349525, 1398101, 2796203, 11184811, 22369621, 89478485, 178956971, 715827883, 1431655765, 5726623061, 11453246123, 45812984491, 91625968981, 366503875925, 733007751851
Offset: 0
Programs
-
Python
def A141355(n): return ((1<<(n+1<<1)-(n+1>>1)-1)|1)//3 # Chai Wah Wu, Apr 19 2025
Formula
Extensions
Edited and extended by R. J. Mathar, Feb 23 2009
Comments