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.

Showing 1-2 of 2 results.

A134072 Concatenation of A000204 Lucas numbers (beginning at 1) in reverse order.

Original entry on oeis.org

1, 31, 431, 7431, 117431, 18117431, 2918117431, 472918117431, 76472918117431, 12376472918117431, 19912376472918117431, 32219912376472918117431, 52132219912376472918117431, 84352132219912376472918117431
Offset: 1

Views

Author

Alexander Adamchuk, Oct 06 2007

Keywords

Comments

Indices of prime terms are {2, 3, 5, 11, ...}. Primes are listed in A134071 = {31, 431, 117431, 19912376472918117431, ...}.

Crossrefs

Cf. A000204 (Lucas numbers).
Cf. A130774 (concatenation of Lucas numbers).
Cf. A019523 (concatenation of Fibonacci numbers).
Cf. A038399 (concatenation of first n nonzero Fibonacci numbers in reverse order).
Cf. A134069 (primes in A038399).
Cf. A134070 (primes in A130774).
Cf. A134071 (primes in A134072).

Programs

  • Mathematica
    Module[{nn=20,lnos},lnos=LucasL[Range[nn]];Table[FromDigits[Flatten[ IntegerDigits/@ Reverse[Take[lnos,n]]]],{n,nn}]] (* Harvey P. Dale, Jul 27 2015 *)

Extensions

Edited by Charles R Greathouse IV, Apr 26 2010

A134071 Primes in A134072.

Original entry on oeis.org

31, 431, 117431, 19912376472918117431
Offset: 1

Views

Author

Alexander Adamchuk, Oct 06 2007

Keywords

Comments

A134072 = {1, 31, 431, 7431, 117431, 18117431, 2918117431, 472918117431, 76472918117431, 12376472918117431, 19912376472918117431, ...} = concatenation of Lucas numbers in reverse order. Indices of prime terms in A134072 are {2, 3, 5, 11, ...}.
No further terms through 500 Lucas numbers. - Harvey P. Dale, Aug 17 2013

Examples

			a(1) = A134072(2) = 31.
a(2) = A134072(3) = 431.
a(3) = A134072(5) = 117431.
		

Crossrefs

Cf. A000204 (Lucas numbers).
Cf. A130774 (concatenation of Lucas numbers).
Cf. A019523 (concatenation of Fibonacci numbers).
Cf. A038399 (concatenation of first n nonzero Fibonacci numbers in reverse order).
Cf. A134072 (concatenation of A000204 Lucas numbers (beginning at 1) in reverse order).
Cf. A134069 (primes in A038399).
Cf. A134070 (primes in A130774).

Programs

  • Mathematica
    nn=500;With[{lucs=LucasL[Range[nn]]},Select[Table[FromDigits[ Flatten[ IntegerDigits/@ Reverse[ Take[lucs,n]]]],{n,nn}],PrimeQ]] (* Harvey P. Dale, Aug 17 2013 *)

Extensions

Edited by Charles R Greathouse IV, Apr 24 2010
Showing 1-2 of 2 results.