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-3 of 3 results.

A079451 Largest prime dividing the n-th Lucas number (A000032); 1 when no such prime exists.

Original entry on oeis.org

2, 1, 3, 2, 7, 11, 3, 29, 47, 19, 41, 199, 23, 521, 281, 31, 2207, 3571, 107, 9349, 2161, 211, 307, 461, 1103, 151, 90481, 5779, 14503, 19489, 2521, 3010349, 4481, 9901, 63443, 911, 103681, 54018521, 29134601, 859, 3041, 370248451, 1427, 144481, 967, 541, 275449
Offset: 0

Views

Author

Lekraj Beedassy, Jan 13 2003

Keywords

Crossrefs

Cf. A000032 (Lucas numbers), A006530 (greatest prime factor).
Cf. A001606 (indices of prime Lucas numbers <=> where a(n) = A000032(n)), subsequence of A076697 (indices of record values in this sequence).
Cf. A280104 (same for smallest prime factor).

Programs

Formula

a(n) = A006530(A000032(n)). - Felix Fröhlich, Dec 26 2016

Extensions

More terms from Michel Marcus, Oct 26 2013
Modified b-file and scripts so that a(1)=1. - David Radcliffe, Aug 03 2025

A238899 Irregular triangle read by rows: row n lists divisors of n-th Lucas number A000032(n).

Original entry on oeis.org

1, 2, 1, 1, 3, 1, 2, 4, 1, 7, 1, 11, 1, 2, 3, 6, 9, 18, 1, 29, 1, 47, 1, 2, 4, 19, 38, 76, 1, 3, 41, 123, 1, 199, 1, 2, 7, 14, 23, 46, 161, 322, 1, 521, 1, 3, 281, 843, 1, 2, 4, 11, 22, 31, 44, 62, 124, 341, 682, 1364, 1, 2207, 1, 3571, 1, 2, 3, 6, 9, 18, 27, 54
Offset: 0

Views

Author

T. D. Noe, Mar 14 2014

Keywords

Comments

Note that, in general, the Lucas numbers have fewer divisors than Fibonacci numbers. Why?

Examples

			Triangle begins:
  1,   2;
  1;
  1,   3;
  1,   2,  4;
  1,   7;
  1,  11;
  1,   2,  3,   6,  9, 18;
  1,  29;
  1,  47;
  1,   2,  4,  19, 38, 76;
  1,   3, 41, 123;
  1, 199;
  1,   2,  7,  14, 23, 46, 161, 322;
  ...
		

Crossrefs

Cf. A000032 (Lucas numbers), A027750.
Cf. A133021 (similar triangle for Fibonacci numbers).
Column 2 gives A280104 (for n>=2).

Programs

  • Magma
    [Divisors(Lucas(n)): n in [0..30]]; // Vincenzo Librandi, Nov 15 2024
  • Mathematica
    Flatten[Table[Divisors[LucasL[n]], {n, 0, 20}]] (* Typo corrected by Harvey P. Dale, Jun 29 2021 *)

A364820 a(n) is the smallest prime factor of the n-th Pell number A000129(n).

Original entry on oeis.org

2, 5, 2, 29, 2, 13, 2, 5, 2, 5741, 2, 33461, 2, 5, 2, 137, 2, 37, 2, 5, 2, 229, 2, 29, 2, 5, 2, 44560482149, 2, 61, 2, 5, 2, 13, 2, 593, 2, 5, 2, 1746860020068409, 2, 11437, 2, 5, 2, 3761, 2, 13, 2, 5, 2, 68480406462161287469, 2, 29, 2, 5, 2
Offset: 2

Views

Author

Sean A. Irvine, Oct 21 2023

Keywords

Crossrefs

Cf. A246556 (smallest primitive factor), A264137, A280104, A060383, A020639.

Programs

  • Mathematica
    FactorInteger[#][[1, 1]] & /@ LinearRecurrence[{2, 1}, {2, 5}, 57] (* Amiram Eldar, Oct 21 2023 *)

Formula

a(n) = A020639(A000129(n)).
Showing 1-3 of 3 results.