OFFSET
1,2
COMMENTS
Numbers k such that A003234(k) equals the image of some x by A000201(A001950()) (see 1.20 p. 339 of Carlitz link). - Michel Marcus, Feb 02 2014
This is the function named t in [Carlitz]. - Eric M. Schmidt, Aug 14 2014
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.
A. M. Odlyzko, Letters to N. J. A. Sloane Feb 1974.
PROG
(PARI) A000201(n) = floor(n*(sqrt(5)+1)/2);
A001950(n) = floor(n*(sqrt(5)+3)/2);
A003231(n) = floor(n*(sqrt(5)+5)/2);
lista(nn) = {vab = vector(nn, i, A000201(A001950(i))); v003234 = select(n->is003234(n), vector(nn, i, i)); for (n=1, #v003234, if (vecsearch(vab, v003234[n]), print1(n, ", ")); ); } \\ Michel Marcus, Feb 02 2014
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
More terms from Michel Marcus, Feb 02 2014
New definition from Eric M. Schmidt, Aug 14 2014
STATUS
approved