login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A130688 Numbers n with following property: suppose n^6 = d1 d2 d3 ...dk in decimal; then d1! + d2! + ... + dk! is a square. 0
1, 6, 747, 2802, 10000, 10256, 11876, 13875, 14623, 14710, 17117, 18090, 23919, 26569, 34282, 35402, 40515, 41202, 41850, 42195, 44684, 48396, 54698, 58509, 59293, 59644, 59900, 65502, 67795, 74004, 75320, 79593, 82677, 82713, 83402 (list; graph; refs; listen; history; internal format)
OFFSET

1,2

COMMENTS

Numbers n such that n^6 is in A130687.

EXAMPLE

a(2)=6

6^6=46656

(4!+6!+6!+5!+6!)^(1/2)=48 is an integer

MAPLE

A061602 := proc(n) local digs ; digs := convert(n, base, 10) ; add(factorial(op(i, digs)), i=1..nops(digs)) ; end: isA130687 := proc(n) RETURN(issqr(A061602(n))) ; end: isA130688 := proc(n) RETURN(isA130687(n^6)) ; end: for n from 1 to 130000 do if isA130688(n) then printf("%d, ", n) ; fi : od:

PROG

(PARI) for(n=1, 10^5, m=n^6; s=0; while(m, s+=(m%10)!; m\=10); if(issquare(s), print1(n", ")))

CROSSREFS

Cf. A130687, A089185, A126076, A126077, A126078.

Sequence in context: A080369 A036981 A202080 * A088217 A020542 A045480

Adjacent sequences:  A130685 A130686 A130687 * A130689 A130690 A130691

KEYWORD

nonn,base

AUTHOR

Aktar Yalcin (aktaryalcin(AT)msn.com), Jun 30 2007

EXTENSIONS

Edited by R. J. Mathar (mathar(AT)strw.leidenuniv.nl) and Martin Fuller (martin_n_fuller(AT)btinternet.com), Jul 13 2007

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 17 21:13 EST 2012. Contains 206085 sequences.