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.

A114340 Largest palindromic divisor of n!! (double factorial = A006882(n)).

Original entry on oeis.org

1, 2, 3, 8, 5, 8, 7, 8, 9, 8, 99, 9, 9009, 252, 9009, 252, 9009, 48384, 969969, 48384, 969969, 405504, 969969, 405504, 969969, 405504, 969969, 525525, 969969, 525525, 79833897, 525525, 133464331, 595595, 5273993725, 595595
Offset: 1

Views

Author

Giovanni Resta, Feb 07 2006

Keywords

Examples

			a(16)=252 since 252 is the largest palindromic factor of 16!!= 10321920=252* 40960.
		

Crossrefs

Programs

  • Mathematica
    palQ[n_]:= n == FromDigits@Reverse@IntegerDigits@n; Array[Max[Select[Divisors[ #!! ], palQ]] &, 40]

Formula

a(n) = A093030(A006882(n)). - Michel Marcus, Oct 13 2022