OFFSET
1,1
COMMENTS
This is the function named v in [Carlitz]. - Eric M. Schmidt, Aug 14 2014
Ron Reble remarks that Carlitz has a typo on page 339: Carlitz writes "In particular since (b) is a proper subset of (a), there exists a function v such that b = av." It should be "(b) is a proper subset of (u), ... b = uv." - N. J. A. Sloane, Jan 20 2020
REFERENCES
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
L. Carlitz, R. Scoville and T. Vaughan, Some arithmetic functions related to Fibonacci numbers, Fib. Quart., 11 (1973), 337-386.
FORMULA
a(n) = A001950(n) - j, where j is the largest integer such that A003234(j) < n. [Carlitz, Thm. 7.3]. - Eric M. Schmidt, Sep 16 2014
PROG
(Haskell)
import Data.List (elemIndex); import Data.Maybe (fromJust)
a003256 = (+ 1) . fromJust . (`elemIndex` a242094_list) . a001950
-- Reinhard Zumkeller, Oct 03 2014
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
New definition by Eric M. Schmidt, Aug 17 2014
STATUS
approved