[go: up one dir, main page]

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!)
A293435 a(n) is the number of the proper divisors of n that are Fibonacci numbers (A000045). 9
0, 1, 1, 2, 1, 3, 1, 2, 2, 3, 1, 3, 1, 2, 3, 3, 1, 3, 1, 3, 2, 2, 1, 4, 2, 3, 2, 2, 1, 4, 1, 3, 2, 2, 2, 3, 1, 2, 3, 4, 1, 4, 1, 2, 3, 2, 1, 4, 1, 3, 2, 3, 1, 3, 2, 3, 2, 2, 1, 4, 1, 2, 3, 3, 3, 3, 1, 3, 2, 3, 1, 4, 1, 2, 3, 2, 1, 4, 1, 4, 2, 2, 1, 4, 2, 2, 2, 3, 1, 4, 2, 2, 2, 2, 2, 4, 1, 2, 2, 3, 1, 4, 1, 4, 4 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
LINKS
FORMULA
a(n) = Sum_{d|n, d<n} A010056(d).
a(n) = A005086(n) - A010056(n).
G.f.: Sum_{k>=2} x^(2*Fibonacci(k)) / (1 - x^Fibonacci(k)). - Ilya Gutkovskiy, Apr 14 2021
EXAMPLE
For n = 55, its proper divisors are [1, 5, 11], of which only two, namely 1 and 5 are in A000045, thus a(55) = 2.
MATHEMATICA
With[{s = Fibonacci@ Range[2, 40]}, Table[DivisorSum[n, 1 &, And[MemberQ[s, #], # != n] &], {n, 105}]] (* Michael De Vlieger, Oct 09 2017 *)
PROG
(PARI)
A010056(n) = { my(k=n^2); k+=(k+1)<<2; (issquare(k) || (n>0 && issquare(k-8))) }; \\ This function from Charles R Greathouse IV, Jul 30 2012
A293435(n) = sumdiv(n, d, (d<n)*A010056(d));
CROSSREFS
Cf. also A293433.
Sequence in context: A241273 A353646 A154263 * A294901 A347042 A333416
KEYWORD
nonn
AUTHOR
Antti Karttunen, Oct 09 2017
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 August 30 17:27 EDT 2024. Contains 375545 sequences. (Running on oeis4.)