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!)
A292467 Smallest integer such that the sum of its n smallest divisors is a Fibonacci number, or 0 if no such integer exists. 0
1, 2, 9, 94, 18, 60, 210, 36, 510, 624, 90, 4290, 2604, 2340, 792, 8512, 9324, 3960, 9396, 600, 3600, 7840, 5472, 6840, 5520, 10296, 7800, 6120, 12768, 9450, 18240, 33600, 16200, 37800, 27360, 68796, 222768, 59400, 118944, 156240, 139320, 99360, 302400, 288512 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
The first corresponding Fibonacci numbers are 1, 3, 13, 144, 21, 21, 34, 55, 89, 89, 144, 144, 233, 144, 233, ...
The first squares of the sequence are 1, 9, 36, 3600, ...
LINKS
EXAMPLE
a(5)=18 because the sum of the 5 smallest divisors of 18, i.e., 1 + 2 + 3 + 6 + 9 = 21, is a Fibonacci number.
MATHEMATICA
Table[k=1; While[Nand[Length@#>=n, IntegerQ[Sqrt[5*Total@Take[PadRight[#, n], n]^2-4]]||IntegerQ[Sqrt[5*Total@Take[PadRight[#, n], n]^2+4]]]&@Divisors@k, k++]; k, {n, 1, 45}]
PROG
(PARI) isfib(n) = my(k=n^2); k+=(k+1)<<2; issquare(k) || (n>0 && issquare(k-8)) ;
a(n) = {my(k = 1); while((d=divisors(k)) && !((#d >= n) && isfib(sum(i=1, n, d[i]))), k++); k; } \\ Michel Marcus, Oct 01 2017
CROSSREFS
Sequence in context: A356566 A365363 A011804 * A291622 A058156 A011837
KEYWORD
nonn
AUTHOR
Michel Lagneau, Sep 22 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 April 23 18:16 EDT 2024. Contains 371916 sequences. (Running on oeis4.)