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

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A045920 Numbers n such that factorizations of n and n+1 have same number of primes (including multiplicities). 9
2, 9, 14, 21, 25, 27, 33, 34, 38, 44, 57, 75, 85, 86, 93, 94, 98, 116, 118, 121, 122, 124, 133, 135, 141, 142, 145, 147, 153, 158, 164, 170, 171, 174, 177, 201, 202, 205, 213, 214, 217, 218, 230, 244, 245, 253, 284, 285, 296, 298, 301, 302, 326, 332, 334, 350, 356, 361 (list; graph; refs; listen; history; internal format)
OFFSET

1,1

COMMENTS

A115186 is a subsequence: A001222(A115186(n))=A001222(A115186(n)+1)=n. - Reinhard Zumkeller (reinhard.zumkeller(AT)gmail.com), Jan 16 2006

Indices k such that A076191(k) = 0. [From Ray Chandler (rayjchandler(AT)sbcglobal.net), Dec 10 2008]

REFERENCES

C. Clawson, Mathematical mysteries, Plenum Press 1996, p. 250

LINKS

Reinhard Zumkeller, Table of n, a(n) for n = 1..10000

MATHEMATICA

f[n_]:=Plus@@Last/@FactorInteger[n]; lst={}; Do[If[f[n]==f[n+1], AppendTo[lst, n]], {n, 0, 6!}]; lst [From Vladimir Orlovsky (4vladimir(AT)gmail.com), May 12 2010]

PROG

(Haskell)

import Data.List (elemIndices)

a045920 n = a045920_list !! (n-1)

a045920_list = map (+ 1) $ elemIndices 0 $

   zipWith (-) (tail a001222_list) a001222_list

-- Reinhard Zumkeller, Oct 11 2011

CROSSREFS

Sequence in context: A144472 A071343 A043401 * A071344 A106360 A024470

Adjacent sequences:  A045917 A045918 A045919 * A045921 A045922 A045923

KEYWORD

nice,nonn

AUTHOR

Felice Russo (frusso(AT)micron.com)

EXTENSIONS

More terms from David W. Wilson (davidwwilson(AT)comcast.net)

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 15 23:53 EST 2012. Contains 205860 sequences.