enow.com Web Search

Search results

  1. Results from the WOW.Com Content Network
  2. Longest palindromic substring - Wikipedia

    en.wikipedia.org/wiki/Longest_palindromic_substring

    For example, if the "Old" palindrome is "abcbpbcba", we can see that the palindrome centered on "c" after the "p" must have the same length as the palindrome centered on the "c" before the "p". The second case is when the palindrome at MirroredCenter extends outside the "Old" palindrome. That is, it extends "to the left" (or, contains ...

  3. Palindromic number - Wikipedia

    en.wikipedia.org/wiki/Palindromic_number

    The only known non-palindromic number whose cube is a palindrome is 2201, and it is a conjecture the fourth root of all the palindrome fourth powers are a palindrome with 100000...000001 (10 n + 1). Gustavus Simmons conjectured there are no palindromes of form n k for k > 4 (and n > 1).

  4. Palindrome tree - Wikipedia

    en.wikipedia.org/wiki/Palindrome_Tree

    In computer science a palindrome tree, also called an EerTree, [1] is a type of search tree, that allows for fast access to all palindromes contained in a string.They can be used to solve the longest palindromic substring, the k-factorization problem [2] (can a given string be divided into exactly k palindromes), palindromic length of a string [3] (what is the minimum number of palindromes ...

  5. Palindrome - Wikipedia

    en.wikipedia.org/wiki/Palindrome

    A 12th-century palindrome with the same square property is the Hebrew palindrome, פרשנו רעבתן שבדבש נתבער ונשרף perashnu: ra`avtan shebad'vash nitba`er venisraf 'We explained the glutton who is in the honey was burned and incinerated', credited in 1924 to the medieval Jewish philosopher Abraham ibn Ezra, [13 ...

  6. Lychrel number - Wikipedia

    en.wikipedia.org/wiki/Lychrel_number

    He wrote a C program to perform the reversal and addition iterations and to check for a palindrome after each step. The program ran in the background with a low priority and produced a checkpoint to a file every two hours and when the system was shut down, recording the number reached so far and the number of iterations. It restarted itself ...

  7. Palindromic prime - Wikipedia

    en.wikipedia.org/wiki/Palindromic_prime

    In mathematics, a palindromic prime (sometimes called a palprime [1]) is a prime number that is also a palindromic number.Palindromicity depends on the base of the number system and its notational conventions, while primality is independent of such concerns.

  8. Narcissistic number - Wikipedia

    en.wikipedia.org/wiki/Narcissistic_number

    In number theory, a narcissistic number [1] [2] (also known as a pluperfect digital invariant (PPDI), [3] an Armstrong number [4] (after Michael F. Armstrong) [5] or a plus perfect number) [6] in a given number base is a number that is the sum of its own digits each raised to the power of the number of digits.

  9. Happy number - Wikipedia

    en.wikipedia.org/wiki/Happy_number

    A simple test in Python to check if a number is happy: def pdi_function ( number , base : int = 10 ): """Perfect digital invariant function.""" total = 0 while number > 0 : total += pow ( number % base , 2 ) number = number // base return total def is_happy ( number : int ) -> bool : """Determine if the specified number is a happy number ...