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.

A113471 Lucas(k)/(3k) for k = 2*3^n, where Lucas(k) is k-th Lucas number (A000032).

Original entry on oeis.org

1, 107, 1190741689, 14769352340699478579719327005523, 253650450218391594062880777243777017638488805917392303113120204411172926964476779033181303378188721
Offset: 1

Views

Author

Alexander Adamchuk, May 13 2007

Keywords

Comments

a(n) divides a(n+1). a(n+1)/a(n) = {107, 11128427, 12403489755282666163307, 17174107866559209832245996776509546318861182768126017871860347845227, ...}. a(n+1)/a(n) is prime for n = {1, 2, 4}.

Crossrefs

Cf. A000032, A016089 = numbers n such that n divides n-th Lucas number. Cf. A128935 = Fibonacci(5^n) / 5^n.

Programs

  • Mathematica
    Table[ ( Fibonacci[ 2*3^n - 1 ] + Fibonacci[ 2*3^n + 1 ] ) / ( 2*3^(n+1) ), {n,1,5} ]

Formula

a(n) = ( Fibonacci[ 2*3^n - 1 ] + Fibonacci[ 2*3^n + 1 ] ) / ( 2*3^(n+1) ). a(n) = A000032[ 2*3^n ] / ( 2*3^(n+1) ).