A085924 If k = product (p_i)^(r_i), where p_i are primes in increasing order, then k is a member if concatenation of r_i as decimal numbers forms a palindrome.
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 19, 21, 22, 23, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 41, 42, 43, 46, 47, 49, 51, 53, 55, 57, 58, 59, 61, 62, 64, 65, 66, 67, 69, 70, 71, 73, 74, 77, 78, 79, 81, 82, 83, 85, 86, 87, 89, 90, 91, 93, 94, 95
Offset: 0
Examples
15 is a member as 15 = 3^1*5^1 and 11 is a palindrome. 90 is a member as 90 = 2^1*3^2*5^1 and 121 is a palindrome. 84 is not a member as 84 = 2^2*3^1*7^1, 211 is not a palindrome. 1024 is not a member as 1024 = 2^10, and decimal number string "10" is not a palindrome.
Crossrefs
Extensions
More terms from David Wasserman, Feb 11 2005
Dependence on decimal number system highlighted and a link to the new version, A242414, added by Antti Karttunen, May 30 2014
Comments