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.

A267551 Lucas numbers written backwards.

Original entry on oeis.org

2, 1, 3, 4, 7, 11, 81, 92, 74, 67, 321, 991, 223, 125, 348, 4631, 7022, 1753, 8775, 9439, 72151, 67442, 30693, 97046, 286301, 167761, 344172, 402934, 746017, 1589411, 8940681, 9430103, 7480784, 6911887, 34025721, 93233602, 28258333, 12581045, 30830478
Offset: 0

Views

Author

Vincenzo Librandi, Jan 17 2016

Keywords

Examples

			81 is in the sequence because 7 + 11 = 18, which is 81 written backwards.
		

Crossrefs

Programs

  • Magma
    [Seqint(Reverse(Intseq(Lucas(n)))): n in [0..50]];
    
  • Mathematica
    FromDigits[Reverse[IntegerDigits[#]]]&/@LucasL[Range[0, 50]]
  • PARI
    a(n) = eval(concat(Vecrev(Str(fibonacci(n+1)+fibonacci(n-1))))); \\ Altug Alkan, Jan 17 2016

Formula

a(n) = A004086(A000032(n)).