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!)
A375768 The maximum exponent in the prime factorization of the numbers whose maximum exponent in their prime factorization is a Fibonacci number. 3
0, 1, 1, 2, 1, 1, 1, 3, 2, 1, 1, 2, 1, 1, 1, 1, 2, 1, 2, 1, 1, 1, 3, 2, 1, 3, 2, 1, 1, 1, 5, 1, 1, 1, 2, 1, 1, 1, 3, 1, 1, 1, 2, 2, 1, 1, 2, 2, 1, 2, 1, 3, 1, 3, 1, 1, 1, 2, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 3, 1, 1, 2, 2, 1, 1, 1, 1, 1, 2, 1, 1, 1, 3, 1, 2, 1, 2, 1, 1, 1, 5, 1, 2, 2, 2, 1, 1, 1, 3, 1, 1, 1, 3, 1, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
COMMENTS
First differs from A375766 at n = 2448.
All the terms are Fibonacci numbers by definition.
LINKS
FORMULA
a(n) = A051903(A369939(n)).
a(n) = A000045(A375769(n)).
Asymptotic mean: Limit_{m->oo} (1/m) * Sum_{k=1..m} a(k) = (1/zeta(2) + Sum_{k>=3} (Fibonacci(k) * (1/zeta(Fibonacci(k)+1) - 1/zeta(Fibonacci(k)))) / d = 1.52660290991620063268..., where d = 1/zeta(4) + Sum_{k>=5} (1/zeta(Fibonacci(k)+1) - 1/zeta(Fibonacci(k))) = 0.94462177878047854647... is the density of A369939.
MATHEMATICA
fibQ[n_] := Or @@ IntegerQ /@ Sqrt[5*n^2 + {-4, 4}]; s[n_] := Module[{e = Max[FactorInteger[n][[;; , 2]]]}, If[fibQ[e], e, Nothing]]; s[1] = 0; Array[s, 100]
PROG
(PARI) isfib(n) = issquare(5*n^2 - 4) || issquare(5*n^2 + 4);
lista(kmax) = {my(e); print1(0, ", "); for(k = 2, kmax, e = vecmax(factor(k)[, 2]); if(isfib(e), print1(e, ", "))); }
CROSSREFS
Sequence in context: A332954 A115568 A375766 * A072909 A360721 A365552
KEYWORD
nonn,easy,new
AUTHOR
Amiram Eldar, Aug 27 2024
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 September 8 19:56 EDT 2024. Contains 375759 sequences. (Running on oeis4.)