login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A004957
a(n) = ceiling(n*phi^2), where phi is the golden ratio, A001622.
9
0, 3, 6, 8, 11, 14, 16, 19, 21, 24, 27, 29, 32, 35, 37, 40, 42, 45, 48, 50, 53, 55, 58, 61, 63, 66, 69, 71, 74, 76, 79, 82, 84, 87, 90, 92, 95, 97, 100, 103, 105, 108, 110, 113, 116, 118, 121, 124, 126, 129, 131, 134
OFFSET
0,2
LINKS
FORMULA
A060142(a(n)) = 4 * A060142(n). - Reinhard Zumkeller, Nov 26 2012
PROG
(Haskell)
import Data.List (findIndices)
a004957 n = a004957_list !! n
a004957_list = findIndices even a060142_list
-- Reinhard Zumkeller, Nov 26 2012
CROSSREFS
Essentially same as A026352.
Cf. A001622.
Sequence in context: A310136 A310137 A157017 * A026352 A198084 A047399
KEYWORD
nonn
STATUS
approved