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!)
A328847 Number of terms in Zeckendorf expansion needed to write the first Fibonacci based variant of arithmetic derivative of n. 3
0, 0, 1, 1, 2, 1, 2, 1, 3, 3, 2, 1, 3, 1, 4, 3, 3, 1, 4, 1, 3, 4, 4, 1, 3, 3, 3, 4, 4, 1, 3, 1, 4, 3, 5, 3, 3, 1, 5, 4, 3, 1, 4, 1, 3, 3, 4, 1, 3, 4, 3, 3, 6, 1, 5, 3, 4, 5, 4, 1, 3, 1, 5, 3, 4, 4, 2, 1, 5, 6, 2, 1, 3, 1, 4, 3, 5, 5, 5, 1, 3, 5, 5, 1, 3, 7, 5, 4, 3, 1, 3, 5, 5, 5, 4, 6, 4, 1, 3, 4, 5, 1, 7, 1, 6, 5 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
FORMULA
a(n) = A007895(A328845(n)).
a(p) = 1 for all primes p.
PROG
(PARI)
A328845(n) = if(n<=1, 0, my(f=factor(n)); n*sum(i=1, #f~, f[i, 2]*fibonacci(f[i, 1])/f[i, 1]));
A007895(n) = { my(s=0); while(n>0, s++; n -= fibonacci(1+A072649(n))); (s); }
A072649(n) = { my(m); if(n<1, 0, m=0; until(fibonacci(m)>n, m++); m-2); }; \\ From A072649
CROSSREFS
Sequence in context: A270096 A039636 A322866 * A331175 A331954 A309892
KEYWORD
nonn
AUTHOR
Antti Karttunen, Oct 28 2019
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 April 24 19:06 EDT 2024. Contains 371962 sequences. (Running on oeis4.)