cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A272333 Values of Fibonacci(n+1) that divides n!.

This page as a plain text file.
%I A272333 #15 Apr 26 2016 08:52:31
%S A272333 1,2,3,8,21,144,46368
%N A272333 Values of Fibonacci(n+1) that divides n!.
%C A272333 This sequence is finite.
%C A272333 See comment section of A048278 for motivation. Also see the formula section of this sequence for relation between this sequence and divisors of 24.
%C A272333 Sequence focuses on the positive values of n, so 1 only appears once as a term.
%F A272333 a(n) = A000045(A048278(n)+1) = A000045(A018253(n+1)), for n > 0.
%e A272333 8 is a term because 8 = Fibonacci(6) and (6-1)! is divisible by 8.
%o A272333 (PARI) lista(nn) = for(n=1, nn, if(n! % fibonacci(n+1) == 0, print1(fibonacci(n+1), ", ")));
%Y A272333 Cf. A000045, A048278, A018253.
%K A272333 nonn,fini,full
%O A272333 1,2
%A A272333 _Altug Alkan_, Apr 26 2016