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

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A082382 Table which contains in row n the track of n->A003132(n) until reaching 1 or 4. 2
1, 1, 2, 4, 3, 9, 81, 65, 61, 37, 58, 89, 145, 42, 20, 4, 4, 16, 37, 58, 89, 145, 42, 20, 4, 5, 25, 29, 85, 89, 145, 42, 20, 4, 6, 36, 45, 41, 17, 50, 25, 29, 85, 89, 145, 42, 20, 4, 7, 49, 97, 130, 10, 1, 8, 64, 52, 29, 85, 89, 145, 42, 20, 4, 9, 81, 65, 61, 37, 58, 89, 145, 42, 20 (list; graph; refs; listen; history; internal format)
OFFSET

1,3

COMMENTS

If n=1 or 4, the row is extended until reaching 1 or 4 a second time after the starting value.

Conjecture: Each sequence terminates with 1 or the 4 16 37 58 89 145 42 20 4... loop.

REFERENCES

C. Stanley Ogilvy, Tomorrow's Math, 1972

EXAMPLE

The table starts in row 1 as

1,1 ;

2,4 ;

3,9,81,65,61,37,58,89,145,42,20,4;

4,16,37,58,89,145,42,20,4;

5,25,29,85,89,145,42,20,4;

6,36,45,41,17,50,25,29,85,89,145,42,20,4;

PROG

(PARI) \ The squared digital root of a number output initial terms digitsq2(m) = {y=0; for(x=1, m, digitsq(x) ) } digitsq(n) = { print1(n" "); while(1, s=0; while(n > 0, d=n%10; s = s+d*d; n=floor(n/10); ); print1(s" "); if(s==1 || s==4, break); n=s; ) }

CROSSREFS

Sequence in context: A110339 A157406 A075363 * A183210 A064691 A014664

Adjacent sequences:  A082379 A082380 A082381 * A082383 A082384 A082385

KEYWORD

easy,nonn,base,tabf

AUTHOR

Cino Hilliard (hillcino368(AT)gmail.com), Apr 13 2003

EXTENSIONS

Redefined as an irregular table, merged 8 and 9 to 89 at one place - R. J. Mathar (mathar(AT)strw.leidenuniv.nl), Mar 14 2010

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 16 12:15 EST 2012. Contains 205909 sequences.